Signed-off-by: Brian Downing <bdowning@xxxxxxxxx> --- git-repack.sh | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/git-repack.sh b/git-repack.sh index b5c6671..4cff812 100755 --- a/git-repack.sh +++ b/git-repack.sh @@ -3,7 +3,7 @@ # Copyright (c) 2005 Linus Torvalds # -USAGE='[-a] [-d] [-f] [-l] [-n] [-q] [--max-pack-size=N] [--window=N] [--depth=N]' +USAGE='[-a] [-d] [-f] [-l] [-n] [-q] [--max-pack-size=N] [--window=N] [--window-bytes=N] [--depth=N]' SUBDIRECTORY_OK='Yes' . git-sh-setup @@ -20,6 +20,7 @@ do -l) local=--local ;; --max-pack-size=*) extra="$extra $1" ;; --window=*) extra="$extra $1" ;; + --window-bytes=*) extra="$extra $1" ;; --depth=*) extra="$extra $1" ;; *) usage ;; esac -- 1.5.2.GIT - To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html