Answers for "delete a branch locally and remotely"

37

git delete branch

## git version 2.25.1

## Deleting local branches
git branch -d localBranchName
## Deleting remote branches
git push origin --delete remoteBranchName

## Deleting both a local and a remote branch
## They are completely separate objects in Git. But
git branch -d localBranchName && git push origin --delete remoteBranchName
Posted by: Guest on June-28-2020
2

delete git branch remote

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

git delete branch local and remote

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

delete local and remote branch github

git branch -d branch_namegit branch -D branch_name
Posted by: Guest on May-26-2020

Code answers related to "delete a branch locally and remotely"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language