Answers for "how to delete branch from command line"

2

cmd delete branch

git branch -d yourBranch # delete local branch
git push origin --delete yourBranch # delete branch on repo/push change
Posted by: Guest on August-19-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

Code answers related to "how to delete branch from command line"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language