Answers for "git remove branch from local and remote"

20

git branch delete remote

$ git push origin --delete feature/login
Posted by: Guest on February-17-2020
26

git remove branch

// 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 July-03-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 local and remote

$ git branch -D <local-branch>
Posted by: Guest on June-11-2021

Code answers related to "git remove branch from local and remote"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language