Answers for "how to remove a local git branch"

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
1

how to delete local master branch in git

git delete
Posted by: Guest on August-13-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 a local git branch"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language