Answers for "how to remove branch locally"

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
3

delete branch git

// delete branch locally
git branch -D localBranchName

// delete branch remotely
git push
Posted by: Guest on August-12-2020
2

how to delete branch locally

$ git branch -d <local-branch>
Posted by: Guest on December-04-2020
1

how to delete local master branch in git

git delete
Posted by: Guest on August-13-2020
1

git delete branch

## Deleting local branch; branch is not fully merged
git branch -D feature/login
Posted by: Guest on February-08-2021
-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 "how to remove branch locally"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language