Answers for "remove branch from origin"

167

delete branch from remote

// 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
20

git how to delete origin branch

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

delete branc in origin

git push origin --delete test
Posted by: Guest on October-01-2020

Code answers related to "remove branch from origin"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language