Skip to content

Commit

Permalink
Stop displaying "Pack pack-$ID created." during git-gc
Browse files Browse the repository at this point in the history
Discussion on the list tonight came to the conclusion that showing
the name of the packfile we just created during git-repack is not
a very useful message for any end-user.  For the really technical
folk who need to have the name of the newest packfile they can use
something such as `ls -t .git/objects/pack | head -2` to find the
most recently created packfile.

Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
  • Loading branch information
Shawn O. Pearce committed Oct 19, 2007
1 parent b5d72f0 commit 0e30404
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions git-repack.sh
Original file line number Diff line number Diff line change
Expand Up @@ -83,9 +83,6 @@ for name in $names ; do
fullbases="$fullbases pack-$name"
chmod a-w "$PACKTMP-$name.pack"
chmod a-w "$PACKTMP-$name.idx"
if test "$quiet" != '-q'; then
echo "Pack pack-$name created."
fi
mkdir -p "$PACKDIR" || exit

for sfx in pack idx
Expand Down

0 comments on commit 0e30404

Please sign in to comment.