Browse Source

make --subtree the default

Now that we have --whole-tree to disable it, it seems reasonable to make
it the default. For large projects, the --whole-tree behavior is really
bad (disk usage and speed).
master
Matthieu Moy 12 years ago
parent
commit
c72f69ff63
  1. 3
      git-latexdiff

3
git-latexdiff

@ -90,6 +90,7 @@ Options:
--ln-untracked 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.
--subtree checkout the tree at and below the main file --subtree checkout the tree at and below the main file
(enabled by default, disable with --whole-tree)
--whole-tree checkout the whole tree (contrast with --subtree) --whole-tree checkout the whole tree (contrast with --subtree)
--ignore-makefile ignore the Makefile, build as though it doesn't exist --ignore-makefile ignore the Makefile, build as though it doesn't exist
EOF EOF
@ -136,7 +137,7 @@ output=
initial_dir=$PWD initial_dir=$PWD
tmpdir_prefix="/tmp" tmpdir_prefix="/tmp"
prepare_cmd= prepare_cmd=
subtree=0
subtree=1
uselatexmk= uselatexmk=
latexopt= latexopt=
ln_untracked=0 ln_untracked=0

Loading…
Cancel
Save