Git: Delete Branch Remote and Locally

  • 0
  1. See all branches:
git branch -a
  1. Delete the branch locally:
git branch -D 
  1. Delete the branch remotely:
git push origin --delete 
DONE!

No comments:

Post a Comment