Answers for "remove branch from local repo git"

20

git how to delete origin branch

$ git push origin --delete feature/login
Posted by: Guest on February-17-2020
8

how to delete a branch git

// delete branch locally
git branch -d localBranchName

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

Code answers related to "remove branch from local repo git"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language