Browse Source

Make --no-ln-untracked the default

The problem with --ln-untracked is that you get diffs that potentially
cannot be reproduced. We should not encourage people to do that.
master
Joshua Nathaniel Pritikin 12 years ago
parent
commit
a001c22985
  1. 4
      git-latexdiff

4
git-latexdiff

@ -85,7 +85,7 @@ Options:
--verbose, -v give more verbose output --verbose, -v give more verbose output
--prepare <cmd> run <cmd> before latexdiff (e.g. run make to generate --prepare <cmd> run <cmd> before latexdiff (e.g. run make to generate
included files) included files)
--no-ln-untracked don't symlink uncommited files from the working directory
--ln-untracked symlink uncommited files from the working directory
--version show git-latexdiff version. --version show git-latexdiff version.
EOF EOF
} }
@ -132,7 +132,7 @@ initial_dir=$PWD
tmpdir_prefix="/tmp" tmpdir_prefix="/tmp"
prepare_cmd= prepare_cmd=
uselatexmk= uselatexmk=
ln_untracked=1
ln_untracked=0
while test $# -ne 0; do while test $# -ne 0; do
case "$1" in case "$1" in

Loading…
Cancel
Save