Answers for "how to delete branch github command line"

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
1

delete git branch

We can delete a branch by calling the branch command and passing in the -d option, followed by the branch name.

$ git branch -d <branchname>
Posted by: Guest on November-15-2020
2

how to delete branch locally

$ git branch -d <local-branch>
Posted by: Guest on December-04-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
-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 branch github command line"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language