Answers for "how can i get rid of my current branch locally"

1

How to Delete Git Branch

## Delete Branch Locally
git branch -d localBranchName
## Delete Branch Remotely
git push origin --delete remoteBranchName
Posted by: Guest on July-17-2021
2

how to delete branch locally

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

Code answers related to "how can i get rid of my current branch locally"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language