Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to commit with --no-verify flag in JetBrains IDEs

I always use WebStorm IDE, and I like so mush its Git manager. But for some time now I have the need to commit with --no-verify and I don't find anywhere how to simulate that when I commit with WebStorm.

like image 794
Jose Mac Avatar asked Aug 31 '25 16:08

Jose Mac


2 Answers

The key to simulate --no-verify flag in Jetbrains IDEs is prevent execute git hooks before commit, as I show in the picture:

enter image description here

unchecking that option The git manager won't execute any githooks as the same way as the --no-verify does.

For pre-push hooks, in the pre-push popup you must uncheck the run Git hooks like this:

enter image description here

like image 132
Jose Mac Avatar answered Sep 06 '25 05:09

Jose Mac


Just came here to show where is this check box actually: enter image description here

like image 32
Juliyanage Silva Avatar answered Sep 06 '25 06:09

Juliyanage Silva