Update usage:

- Add missing description of "-c" option.
- Add one more usage example.
This commit is contained in:
Hans Petter Selasky 2015-11-25 14:51:44 +00:00
parent edd0e0b098
commit b35ff88448
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=291302

View File

@ -354,13 +354,15 @@ usage(void)
"\t" "-v Increase verbosity\n"
"\t" "-d Check output from git diff\n"
"\t" "-D Check output from svn diff\n"
"\t" "-c <cmd> Set custom command to produce diff\n"
"\t" "-g <hash> Check output from git hash\n"
"\t" "-s <rev> Check output from svn revision\n"
"\t" "-t <tool> Launch external diff tool\n"
"\n"
"Examples:\n"
"\t" "indent_wrapper -D\n"
"\t" "indent_wrapper -D -t meld\n");
"\t" "indent_wrapper -D -t meld\n"
"\t" "indent_wrapper -D -t \"diff -u\"\n");
exit(EX_SOFTWARE);
}