Answers for "delete a git branch local and remote"

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 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 git branch local and remote"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language