File tree 2 files changed +9
-0
lines changed
2 files changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -105,6 +105,7 @@ P.S: All these commands are tested on `git version 2.7.4 (Apple Git-66)`.
105
105
* [ List only the root and merge commits.] ( #list-only-the-root-and-merge-commits )
106
106
* [ Merge previous two commits into one.] ( #merge-previous-two-commits-into-one )
107
107
* [ List all branch is WIP] ( #list-all-branch-is-wip )
108
+ * [ Bypass pre-commit and commit-msg githooks] ( #bypass-pre-commit-and-commit-msg-githooks )
108
109
109
110
<!-- Don’t remove or change the comment below – that can break automatic updates. More info at <http://npm.im/doxie.inject>. -->
110
111
<!-- @doxie.inject end toc -->
@@ -703,5 +704,10 @@ git rebase --interactive HEAD~2
703
704
git checkout master && git branch --no-merged
704
705
```
705
706
707
+ ## Bypass pre-commit and commit-msg githooks
708
+ ``` sh
709
+ git commit --no-verify
710
+ ```
711
+
706
712
<!-- Don’t remove or change the comment below – that can break automatic updates. More info at <http://npm.im/doxie.inject>. -->
707
713
<!-- @doxie.inject end -->
Original file line number Diff line number Diff line change 314
314
}, {
315
315
"title" : " List all branch is WIP" ,
316
316
"tip" : " git checkout master && git branch --no-merged"
317
+ }, {
318
+ "title" : " Bypass pre-commit and commit-msg githooks" ,
319
+ "tip" : " git commit --no-verify"
317
320
}]
You can’t perform that action at this time.
0 commit comments