Answers for "git delete branch locally only"

167

delete local branch

// delete branch locally
git branch -d localBranchName

//delete local branch that is unmerged
git branch -D localBranchName

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

git delete branch local and remote

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

remove local branch

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

git delete branch

git push <remote> :<branch>
Posted by: Guest on June-07-2021

Code answers related to "git delete branch locally only"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language