Delete remote branch
- delete
Mary
$ git co develop
$ git branch -d feature/A
$ git push origin --delete feature/A
# older version:
$ git push origin :feature/A
Joe
$ git pull
$ git branch -d feature/A
$ git remote prune origin
Press ← or → to navigate between chapters
Press S or / to search in the book
Press ? to show this help
Press Esc to hide this help
Mary
$ git co develop
$ git branch -d feature/A
$ git push origin --delete feature/A
# older version:
$ git push origin :feature/A
Joe
$ git pull
$ git branch -d feature/A
$ git remote prune origin