0
Q:

git delete origin branch

// 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
41
git push <remote_name> --delete <branch_name>
13
$ git push origin --delete feature/login
16
git branch -d <branch_name>
47
# Fetch changes from all remotes and locally delete 
# remote deleted branches/tags etc
# --prune will do the job :-;
git fetch --all --prune
2
$ git push -d <remote_name> <branch_name>
$ git branch -d <branch_name>
1
$ git push <remote_name> :<branch_name>
2

New to Communities?

Join the community