Answers for "how to delete a branch in git repo"

8

how to delete a branch git

// delete branch locally
git branch -d localBranchName

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

delete branch git

// delete branch locally
git branch -D localBranchName

// delete branch remotely
git push
Posted by: Guest on August-12-2020

Code answers related to "how to delete a branch in git repo"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language