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 --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
--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
} }
@ -204,6 +205,9 @@ while test $# -ne 0; do
"--subtree") "--subtree")
subtree=1 subtree=1
;; ;;
"--whole-tree")
subtree=0
;;
"--prepare") "--prepare")
shift shift
prepare_cmd="$1" prepare_cmd="$1"

Loading…
Cancel
Save