Skip to content

Commit

Permalink
repack: use only pack-objects, not rev-list.
Browse files Browse the repository at this point in the history
Signed-off-by: Junio C Hamano <junkio@cox.net>
  • Loading branch information
Junio C Hamano committed Sep 20, 2006
1 parent 62e27f2 commit cd0d74d
Showing 1 changed file with 4 additions and 9 deletions.
13 changes: 4 additions & 9 deletions git-repack.sh
Original file line number Diff line number Diff line change
@@ -32,24 +32,19 @@ trap 'rm -f "$PACKTMP"-*' 0 1 2 3 15
# There will be more repacking strategies to come...
case ",$all_into_one," in
,,)
rev_list='--unpacked'
pack_objects='--incremental'
args='--unpacked --incremental'
;;
,t,)
rev_list=
pack_objects=
args=

# Redundancy check in all-into-one case is trivial.
existing=`test -d "$PACKDIR" && cd "$PACKDIR" && \
find . -type f \( -name '*.pack' -o -name '*.idx' \) -print`
;;
esac

pack_objects="$pack_objects $local $quiet $no_reuse_delta$extra"
name=$( { git-rev-list --objects --all $rev_list ||
echo "git-rev-list died with exit code $?"
} |
git-pack-objects --non-empty $pack_objects "$PACKTMP") ||
args="$args $local $quiet $no_reuse_delta$extra"
name=$(git-pack-objects --non-empty --all $args </dev/null "$PACKTMP") ||
exit 1
if [ -z "$name" ]; then
echo Nothing new to pack.

0 comments on commit cd0d74d

Please sign in to comment.