Answers for "command to delete a branch in git"

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
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
1

delete git branch

We can delete a branch by calling the branch command and passing in the -d option, followed by the branch name.

$ git branch -d <branchname>
Posted by: Guest on November-15-2020
3

delete branch git

// delete branch locally
git branch -D localBranchName

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

git delete branch

$ git branch -d <branchname>
Posted by: Guest on June-21-2021

Code answers related to "command to delete a branch in git"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language