GIT: How to bypass pre-commit hook?
Sometimes I just want to bypass the pre-commit hook in order to save my changes even though some tests are failing…
1561 views
❤️
1
Sometimes I just want to bypass the pre-commit hook in order to save my changes even though some tests are failing…
1561 views
With following command you can bypass the pre-commit hook and commit your changes immediately.
git commit -m 'your commit message' --no-verify