You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We want to remove the pre-git dependency from one of our repos that's used semi-regularly across two big teams. The problem we've found is that the pre-commit hooks have already been installed in the repo checkouts of anyone that has built it before. Thus, if we remove the dependency all of their git actions will fail because ./node_modules/.bin/commit-msg is missing.
This would be really simple to fix by wrapping ./node_modules/.bin/commit-msg in a if clause, and make removing this dependency much easier.
The text was updated successfully, but these errors were encountered:
We want to remove the
pre-git
dependency from one of our repos that's used semi-regularly across two big teams. The problem we've found is that the pre-commit hooks have already been installed in the repo checkouts of anyone that has built it before. Thus, if we remove the dependency all of their git actions will fail because./node_modules/.bin/commit-msg
is missing.This would be really simple to fix by wrapping
./node_modules/.bin/commit-msg
in a if clause, and make removing this dependency much easier.The text was updated successfully, but these errors were encountered: