Andrew's git
/
gitweb.git
/ diff
summary
|
log
|
commit
| diff |
tree
commit
grep
author
committer
pickaxe
?
re
git-repack -- respect -q and be quiet
author
Martin Langhoff
<martin@catalyst.net.nz>
Sat, 24 Jun 2006 09:41:25 +0000
(21:41 +1200)
committer
Junio C Hamano
<junkio@cox.net>
Sat, 24 Jun 2006 10:06:30 +0000
(
03:06
-0700)
git-repack was passing the -q along to pack-objects but ignoring it
itself. Correct the oversight.
Signed-off-by: Martin Langhoff <martin@catalyst.net.nz>
Signed-off-by: Junio C Hamano <junkio@cox.net>
git-repack.sh
patch
|
blob
|
history
raw
|
patch
| inline |
side by side
(parent:
86378b3
)
diff --git
a/git-repack.sh
b/git-repack.sh
index 4fb3f26e834f78d40ea629dcd6732d390a129d58..eb75c8cda95dabe190cfe9ddba0c6bd7072615f2 100755
(executable)
--- a/
git-repack.sh
+++ b/
git-repack.sh
@@
-49,8
+49,9
@@
name=$(git-rev-list --objects --all $rev_list 2>&1 |
if [ -z "$name" ]; then
echo Nothing new to pack.
else
- echo "Pack pack-$name created."
-
+ if test "$quiet" != '-q'; then
+ echo "Pack pack-$name created."
+ fi
mkdir -p "$PACKDIR" || exit
mv .tmp-pack-$name.pack "$PACKDIR/pack-$name.pack" &&