Skip to content

Latest commit

 

History

History
13 lines (9 loc) · 303 Bytes

commit-msg-ignore.md

File metadata and controls

13 lines (9 loc) · 303 Bytes

Back to top

Ignore Commit Message Validation

If it's needed to ignore commit message validation for a commit you may use tag @@through.

$ git add somefile.txt
$ git commit -m '@@through Added some system file.'

The validation will be ignored.

Back to top