Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR SHELL

git remove branch

// delete branch locally
git branch -d localBranchName

// delete branch remotely
git push origin --delete remoteBranchName

// refresh branch list
git fetch -p
 
PREVIOUS NEXT
Tagged: #git #remove #branch
ADD COMMENT
Topic
Name
5+4 =