]> git.ipfire.org Git - thirdparty/git.git/blame - git-repack.sh
Documentation: minor cleanups to branch/checkout wording
[thirdparty/git.git] / git-repack.sh
CommitLineData
b2d46199 1#!/bin/sh
ccf1ee32
JH
2#
3# Copyright (c) 2005 Linus Torvalds
4#
5
6b94b1a0 6USAGE='[-a] [-d] [-f] [-l] [-n] [-q] [--max-pack-size=N] [--window=N] [--depth=N]'
d0b353b1 7SUBDIRECTORY_OK='Yes'
ae2b0f15 8. git-sh-setup
ccb36504 9
cec2be76 10no_update_info= all_into_one= remove_redundant=
479b56ba 11local= quiet= no_reuse= extra=
ccf1ee32
JH
12while case "$#" in 0) break ;; esac
13do
14 case "$1" in
15 -n) no_update_info=t ;;
d5acdcf1 16 -a) all_into_one=t ;;
0adb3358 17 -d) remove_redundant=t ;;
cec2be76 18 -q) quiet=-q ;;
479b56ba 19 -f) no_reuse=--no-reuse-object ;;
cec2be76 20 -l) local=--local ;;
6b94b1a0 21 --max-pack-size=*) extra="$extra $1" ;;
ccb36504
LT
22 --window=*) extra="$extra $1" ;;
23 --depth=*) extra="$extra $1" ;;
9678faaa 24 *) usage ;;
ccf1ee32
JH
25 esac
26 shift
27done
28
b6945f57
JH
29# Later we will default repack.UseDeltaBaseOffset to true
30default_dbo=false
31
e0d10e1c 32case "`git config --bool repack.usedeltabaseoffset ||
b6945f57
JH
33 echo $default_dbo`" in
34true)
35 extra="$extra --delta-base-offset" ;;
36esac
37
d5acdcf1 38PACKDIR="$GIT_OBJECT_DIRECTORY/pack"
6b94b1a0 39PACKTMP="$GIT_OBJECT_DIRECTORY/.tmp-$$-pack"
0ea2582d
ML
40rm -f "$PACKTMP"-*
41trap 'rm -f "$PACKTMP"-*' 0 1 2 3 15
d5acdcf1
JH
42
43# There will be more repacking strategies to come...
44case ",$all_into_one," in
45,,)
cd0d74d2 46 args='--unpacked --incremental'
d5acdcf1
JH
47 ;;
48,t,)
ce859074
SP
49 if [ -d "$PACKDIR" ]; then
50 for e in `cd "$PACKDIR" && find . -type f -name '*.pack' \
51 | sed -e 's/^\.\///' -e 's/\.pack$//'`
52 do
53 if [ -e "$PACKDIR/$e.keep" ]; then
54 : keep
55 else
56 args="$args --unpacked=$e.pack"
57 existing="$existing $e"
58 fi
59 done
60 fi
61 [ -z "$args" ] && args='--unpacked --incremental'
d5acdcf1
JH
62 ;;
63esac
0ea2582d 64
479b56ba 65args="$args $local $quiet $no_reuse$extra"
6b94b1a0 66names=$(git-pack-objects --non-empty --all --reflog $args </dev/null "$PACKTMP") ||
b2d46199 67 exit 1
6b94b1a0 68if [ -z "$names" ]; then
d5acdcf1 69 echo Nothing new to pack.
6b94b1a0
DH
70fi
71for name in $names ; do
dca3957b 72 fullbases="$fullbases pack-$name"
ad2c82c0
NP
73 chmod a-w "$PACKTMP-$name.pack"
74 chmod a-w "$PACKTMP-$name.idx"
1054dcd1
ML
75 if test "$quiet" != '-q'; then
76 echo "Pack pack-$name created."
77 fi
178613c7 78 mkdir -p "$PACKDIR" || exit
d5acdcf1 79
2ad47d61
JH
80 for sfx in pack idx
81 do
82 if test -f "$PACKDIR/pack-$name.$sfx"
83 then
84 mv -f "$PACKDIR/pack-$name.$sfx" \
85 "$PACKDIR/old-pack-$name.$sfx"
86 fi
87 done &&
0ea2582d
ML
88 mv -f "$PACKTMP-$name.pack" "$PACKDIR/pack-$name.pack" &&
89 mv -f "$PACKTMP-$name.idx" "$PACKDIR/pack-$name.idx" &&
2ad47d61
JH
90 test -f "$PACKDIR/pack-$name.pack" &&
91 test -f "$PACKDIR/pack-$name.idx" || {
92 echo >&2 "Couldn't replace the existing pack with updated one."
93 echo >&2 "The original set of packs have been saved as"
94 echo >&2 "old-pack-$name.{pack,idx} in $PACKDIR."
95 exit 1
96 }
97 rm -f "$PACKDIR/old-pack-$name.pack" "$PACKDIR/old-pack-$name.idx"
6b94b1a0 98done
d5acdcf1 99
0adb3358 100if test "$remove_redundant" = t
d5acdcf1 101then
ce859074
SP
102 # We know $existing are all redundant.
103 if [ -n "$existing" ]
62af0b53 104 then
6ed64058
JH
105 sync
106 ( cd "$PACKDIR" &&
107 for e in $existing
108 do
dca3957b
DH
109 case " $fullbases " in
110 *" $e "*) ;;
ce859074 111 *) rm -f "$e.pack" "$e.idx" "$e.keep" ;;
62af0b53 112 esac
6ed64058
JH
113 done
114 )
d5acdcf1 115 fi
b60daf05 116 git-prune-packed $quiet
d5acdcf1 117fi
ccf1ee32 118
ccf1ee32
JH
119case "$no_update_info" in
120t) : ;;
121*) git-update-server-info ;;
122esac