- You can see the remote branch with this:
git branch -r
git branch -r | grep <your key word>
- see the local and remote branch:
git branch -r
git branch -r | grep <your key word>
- delete the remote branch:
git push origin --delete <branchName>
- delete the tag:
git push origin --delete tag <tagname>
- you also can push a void local branch to the remote branch,and it also will delete the remote branch:
git push origin :<remote branch name>