Answers for "delete branch github"

15

delete remote git branch

git push --delete remoteName branchName
Posted by: Guest on March-14-2020
7

delete branch github

// delete branch locally
git branch -d localBranchName

// delete branch remotely
git push origin --delete remoteBranchName
Posted by: Guest on August-07-2020
14

Delete a Git Branch In Local And Remotely

git push <remote_name> --delete <branch_name>
Posted by: Guest on September-18-2020
0

delete branch from github mcd

$ git branch -d branch_name
$ git branch -D branch_name
Posted by: Guest on January-30-2021
0

github delete branch in terminal

del branch git
Posted by: Guest on July-28-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language