Skip to content

Instantly share code, notes, and snippets.

@brennanMKE
Created October 15, 2019 17:14
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 brennanMKE/dc0b346a56e3a4b73d7f80fe303f6032 to your computer and use it in GitHub Desktop.
Save brennanMKE/dc0b346a56e3a4b73d7f80fe303f6032 to your computer and use it in GitHub Desktop.
Work in Progress

Work in Progress

Git commit hooks can be slow and often get in the way when working locally with various branches which may be incomplete or experimental. Using the --no-verify switch to disable the commit hooks and allow the commit to save the selected changes speeds up development. This wip script makes it even easier to make a quick commit which can be squashed or fixed up later.

#!/bin/sh
git commit -m WIP --no-verify
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment