Answers for "delete branch using git command"

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
2

how to delete branch locally

$ git branch -d <local-branch>
Posted by: Guest on December-04-2020
0

Delete a branch from local

$ git branch -D Test_Branch
Posted by: Guest on August-01-2021

Code answers related to "delete branch using git command"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language