Answers for "git branch delete from local"

0

delete a git branch

# delete branch locally
git branch -d <branchName>
#example 
git branch -d test
# you add ,commit but not merged and can not delete the branch , use this one
#just use capital D 
git branch -D <branchName> 
#example 
git branch -D test
Posted by: Guest on January-08-2022

Code answers related to "git branch delete from local"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language