Answers for "how to remove local branch and get it again from remote git"

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
2

delete git branch remote

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

Code answers related to "how to remove local branch and get it again from remote git"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language