Answers for "how to delete git branch locally and remotely"

26

git remove branch

// delete branch locally
git branch -d localBranchName

// delete branch remotely
git push origin --delete remoteBranchName

// refresh branch list
git fetch -p
Posted by: Guest on July-03-2020
2

delete git branch remote

git push -d origin <branch_name>
Posted by: Guest on December-16-2020
2

how to delete branch locally

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

Code answers related to "how to delete git branch locally and remotely"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language