[PATCH] Allow git-repack to optionally run git-prune-packed.
From: Martin Atukunda <hidden>
Date: 2016-06-15 22:42:21
Signed-off-by: Martin Atukunda <redacted> --- Documentation/git-repack.txt | 6 +++++- git-repack.sh | 9 +++++++-- 2 files changed, 12 insertions(+), 3 deletions(-) 84104979482df25e6c70e17f8bf2307cdad1faff
diff --git a/Documentation/git-repack.txt b/Documentation/git-repack.txt
index d2f9a44..835e698 100644
--- a/Documentation/git-repack.txt
+++ b/Documentation/git-repack.txt@@ -9,7 +9,7 @@ objects into pack files. SYNOPSIS -------- -'git-repack' [-a] [-d] [-f] [-l] [-n] [-q] +'git-repack' [-a] [-d] [-f] [-l] [-n] [-q] [-p] DESCRIPTION -----------
@@ -55,6 +55,10 @@ OPTIONS Do not update the server information with `git update-server-info`. +-p:: + Run `git-prune-packed` after packing, see + gitlink:git-prune-packed[1] + Author ------ Written by Linus Torvalds <torvalds@osdl.org>
diff --git a/git-repack.sh b/git-repack.sh
index 3d6fec1..970f4ca 100755
--- a/git-repack.sh
+++ b/git-repack.sh@@ -3,11 +3,11 @@ # Copyright (c) 2005 Linus Torvalds # -USAGE='[-a] [-d] [-f] [-l] [-n] [-q]' +USAGE='[-a] [-d] [-f] [-l] [-n] [-q] [-p]' . git-sh-setup no_update_info= all_into_one= remove_redundant= -local= quiet= no_reuse_delta= +local= quiet= no_reuse_delta= run_prune= while case "$#" in 0) break ;; esac do case "$1" in
@@ -17,6 +17,7 @@ do -q) quiet=-q ;; -f) no_reuse_delta=--no-reuse-delta ;; -l) local=--local ;; + -p) run_prune=t;; *) usage ;; esac shift
@@ -77,6 +78,10 @@ then fi fi +case "$run_prune" in +t) git-prune-packed;; +esac + case "$no_update_info" in t) : ;; *) git-update-server-info ;;
--
1.2.4.g84104