Skip to content

Instantly share code, notes, and snippets.

@cowlicks
Created January 25, 2019 19:28
Show Gist options
  • Save cowlicks/76c15e424666b90094f2c4880e27abe1 to your computer and use it in GitHub Desktop.
Save cowlicks/76c15e424666b90094f2c4880e27abe1 to your computer and use it in GitHub Desktop.
git aliases
# An alias for: git add --patch && git commit
# It would be nice if there was an interactive way to bypass git hooks if they block the commit
git config --global alias.pac '!f(){ git add --patch && git commit; }; f'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment