Shell/Bash: github delete branch Example
Shell/Bash Example: This is the "github delete branch" Example. compiled from many sources on the internet by SimpleTutorials.org
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
github delete branch
// delete branch locally git branch -D localBranchName // delete branch remotely git push origin --delete remoteBranchName
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
delete branch from github mcd
$ git branch -d branch_name $ git branch -D branch_name
* Summary: This "github delete branch" Shell/Bash Example is compiled from the internet. If you have any questions, please leave a comment. Thank you!