From 9bc0f32c77b755b8d77d215cc47fafff53cad6f5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lukas=5FSandstr=C3=B6m?= Date: Thu, 10 Nov 2005 00:16:13 +0100 Subject: Rename git-pack-intersect to git-pack-redundant MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This patch renames git-pack-intersect to git-pack-redundant as suggested by Petr Baudis. The new name reflects what the program does, rather than how it does it. Also fix a small argument parsing bug. Signed-off-by: Lukas Sandström Signed-off-by: Junio C Hamano --- git-repack.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'git-repack.sh') diff --git a/git-repack.sh b/git-repack.sh index 3f2830056..4ce00225d 100755 --- a/git-repack.sh +++ b/git-repack.sh @@ -45,7 +45,7 @@ if [ -z "$name" ]; then if test "$remove_redandant" = t ; then echo "Removing redundant packs." sync - redundant=$(git-pack-intersect -a) + redundant=$(git-pack-redundant -a) if test "$redundant" != "" ; then echo $redundant | xargs rm fi @@ -63,7 +63,7 @@ exit if test "$remove_redandant" = t then sync - redundant=$(git-pack-intersect -a) + redundant=$(git-pack-redundant -a) if test "$redundant" != "" ; then echo $redundant | xargs rm fi -- cgit v1.2.1