Answers for "how to delete current branch"

0

delete a branch git

// delete branch locally
git branch -d localBranchName

// delete branch remotely
git push origin --delete remoteBranchName

// delete branch locally
git branch -d localBranchName

// delete branch remotely
git push origin --delete remoteBranchName

// refresh branch list
git fetch -p
Posted by: Guest on September-01-2020
2

how to delete branch locally

$ git branch -d <local-branch>
Posted by: Guest on December-04-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
0

git delete branch start with

git branch -d $(git branch | grep yourSearchPattern)
Posted by: Guest on March-31-2021

Code answers related to "how to delete current branch"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language