Answers for "how to remove the local branch in git"

167

delete local branch

// delete branch locally
git branch -d localBranchName

//delete local branch that is unmerged
git branch -D localBranchName

// delete branch remotely
git push origin --delete remoteBranchName
Posted by: Guest on April-07-2020
0

remove branch not published yet

First checkout another branch
	git checkout <other branch> 

Now delete branch
	git branch -D <deleting brach>
Posted by: Guest on October-20-2020
0

git delete branch local and remote

$ git branch -D <local-branch>
Posted by: Guest on June-11-2021

Code answers related to "how to remove the local branch in git"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language