Answers for "remove branch that is deleted on remote"

167

delete branch from remote

// 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
3

delete remote branch

git branch -r -d remoteBranchName
Posted by: Guest on November-27-2020

Code answers related to "remove branch that is deleted on remote"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language