diff options
| author | Owen Jacobson <owen@grimoire.ca> | 2020-06-17 17:45:21 -0400 |
|---|---|---|
| committer | Owen Jacobson <owen@grimoire.ca> | 2020-06-17 17:45:21 -0400 |
| commit | 8090ba9de7150f8bff0e9cd1375800c9c84bb2cc (patch) | |
| tree | 652ccca3916ba496053042fab383dfa60b978461 | |
| parent | fc58f4d328281e504ca3cf4b2ff96a0242154e20 (diff) | |
Don't run hooks on wip commits.
Wip commits are often _known_ broken. git-wip is intended to save exactly what you have in your work tree, with no fuss.
| -rwxr-xr-x | bin/git-wip | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/git-wip b/bin/git-wip index 6a739a8..731fa9f 100755 --- a/bin/git-wip +++ b/bin/git-wip @@ -3,4 +3,4 @@ # Create a meaningless commit with a unique message: `git wip`. git this -git commit -m "wip: $(uuidgen)" +git commit --no-verify -m "wip: $(uuidgen)" |
