Skip to content

Instantly share code, notes, and snippets.

@pcanterini
Created January 30, 2014 15:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pcanterini/8710752 to your computer and use it in GitHub Desktop.
Save pcanterini/8710752 to your computer and use it in GitHub Desktop.
git aliases
nuke = !git branch -D $1 && git push origin :$1 ( git nuke branch name)
@pcanterini
Copy link
Author

as an alias in .zshrc:

function gitnuke() { git branch -D $1 && git push origin :$1 }

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment