Vojtěch
Vojtěch

Reputation: 12426

Git does not warn about badly written whitespace

I've set config of git so that 'git config --list' gives following:

core.editor=vim
core.whitespace=trailing-space,space-before-tab,indent-with-non-tab
core.repositoryformatversion=0
core.filemode=false
core.bare=false
core.logallrefupdates=true

But when I want to commit a file whit trailing space or other whitespace problem, it never complains. Don't know what I can do.

Upvotes: 2

Views: 365

Answers (1)

manojlds
manojlds

Reputation: 301177

For it to warn you during commit, I believe you have to write a pre-commit hook which will check for the appropriate whitespace and warn you.

Related question regarding removing whitespace: Make git automatically remove trailing whitespace before committing

Upvotes: 6

Related Questions