5
Q:

delete remote git 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 origin --delete feature/login
16
git push --delete remoteName branchName
15
git branch -r -d remoteBranchName
2
$ git push <remote_name> :<branch_name>
2

New to Communities?

Join the community