iesl / box-embeddings

Box Embeddings as Modules
https://www.iesl.cs.umass.edu/box-embeddings
Apache License 2.0
100 stars 10 forks source link

Cannot commit to personal branches due to precommit hook #27

Closed mboratko closed 3 years ago

mboratko commented 3 years ago

Personal branches (other than main and dev/main) seem to still require precommit hooks to pass.

dhruvdcoder commented 3 years ago

You can use the --no-verify flag like so git commit . -m 'quick fix' --no-verify to skip all hooks of pre-commit. Ref: https://ma.ttias.be/git-commit-without-pre-commit-hook/

PS: I would say that you can do it in your branch, but would not recommend doing this very often even in your branch.