Answers for "github delete branch"

7

github delete branch

// delete branch locally
git branch -d localBranchName

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

git delete remote branches in local git

# Fetch changes from all remotes and locally delete 
# remote deleted branches/tags etc
# --prune will do the job :-;
git fetch --all --prune
Posted by: Guest on September-29-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