Is there a way to instruct Visual Studio Code to skip git commit hooks (i.e., to supply the -n argument)?
17:26 18 Dec 2019

I would like to be able to install a pre-commit hook, but also to be able to commit under certain circumstances (e.g., WIP) even when the hook fails. I can do this easily from the command line, using git commit --no-verify (git commit -n). But I can't find anything that allows me to affect the commit in VSCode other than the text field for the commit message.

Am I missing it, or is it not there?

git visual-studio-code