Friday, June 15, 2012

Git: Deleting Branches, Locally and Remotely

Remotely:
  • git push origin :branchname
Locally:
  • git branch -d branchname
  • git branch -D branchname (to force to push through some warnings)
References:

No comments:

Post a Comment