Answers for "how to delete remote branch in github"

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

github delete branch remote

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

delete git branch from remote

git push origin --delete <your remote branch name>
Posted by: Guest on August-06-2021
-1

delete local and remote branch github

git branch -d branch_namegit branch -D branch_name
Posted by: Guest on May-26-2020

Code answers related to "how to delete remote branch in github"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language