gptcommit
gptcommit copied to clipboard
How to temporarily disable gptcommit for manual git commit message entry?
Awesome project! It has been incredibly useful for my work.
After utilizing this tool for a period of time, I would like to know how I can temporarily disable gptcommit and revert to the traditional method of manually entering commit messages.
I was about to ask the same 😅 I would love an option to exclude automatic generation of the commit message.
Just git commit -m 'your message' ?
git commit -n also works, disabling any git hooks
$ git help commit
...
-n, --[no-]verify
By default, the pre-commit and commit-msg hooks are run. When any
of --no-verify or -n is given, these are bypassed. See also
githooks(5).
...