Answers for "git bash how to delete a branch"

15

delete remote git branch

git push --delete remoteName branchName
Posted by: Guest on March-14-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
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

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language