Skip to content

Instantly share code, notes, and snippets.

@linkesch
Last active October 14, 2015 08:25
Show Gist options
  • Save linkesch/d8ee1828b55c253cb520 to your computer and use it in GitHub Desktop.
Save linkesch/d8ee1828b55c253cb520 to your computer and use it in GitHub Desktop.
Delete local and remote GIT branch
# Delete local branch
git branch -D <branch>
# Delete remote branch
git push origin --delete <branch>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment