Browse Source

Add --whole-tree as opposite to --subtree

master
Joshua Nathaniel Pritikin 12 years ago
parent
commit
62f68cee40
  1. 4
      git-latexdiff

4
git-latexdiff

@ -90,6 +90,7 @@ Options:
--ln-untracked symlink uncommited files from the working directory
--version show git-latexdiff version.
--subtree checkout the tree at and below the main file
--whole-tree checkout the whole tree (contrast with --subtree)
--ignore-makefile ignore the Makefile, build as though it doesn't exist
EOF
}
@ -204,6 +205,9 @@ while test $# -ne 0; do
"--subtree")
subtree=1
;;
"--whole-tree")
subtree=0
;;
"--prepare")
shift
prepare_cmd="$1"

Loading…
Cancel
Save