Answers for "how to delete a git branch from command line"

32

delete branch git

//delete locally
git branch -d branch_name

//delete remotely
//git push <remote_name> :<branch_name>
// ex. git push origin :serverfix
Posted by: Guest on May-25-2020
1

delete git branch

We can delete a branch by calling the branch command and passing in the -d option, followed by the branch name.

$ git branch -d <branchname>
Posted by: Guest on November-15-2020

Code answers related to "how to delete a git branch from command line"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language