-
Notifications
You must be signed in to change notification settings - Fork 107
Windows manual testing
Joris Roovers edited this page Feb 25, 2020
·
10 revisions
# No quotes neccessary on windows
echo WIP: test | gitlint
# Doesn't seem to print correctly
echo WIP: tëst | gitlint
# Seems to work
gitlint --debug --commits "3ee281^..3ee281"
# Print author name (contains unicodes): gives problems
git log -1 --pretty=%an "3ee281^..3ee281" | gitlint --debug
# Add file, stage changes, see if gitlint picks the changed file up in debug output
echo foo > foo.txt
git add foo.txt
git status
echo foobar | gitlint --debug --staged