From 62f68cee400b746697a6c3bffbf4481f5c83ce9d Mon Sep 17 00:00:00 2001 From: Joshua Nathaniel Pritikin Date: Mon, 11 Nov 2013 15:01:00 -0500 Subject: [PATCH] Add --whole-tree as opposite to --subtree --- git-latexdiff | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/git-latexdiff b/git-latexdiff index 7cf892f..9016cea 100755 --- a/git-latexdiff +++ b/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"