Fix index preloading for racy dirty case
[git/dscho.git] / git-repack.sh
blob4d313d136e64678b99179b2e1dce7a1beaa36d04
1 #!/bin/sh
3 # Copyright (c) 2005 Linus Torvalds
6 OPTIONS_KEEPDASHDASH=
7 OPTIONS_SPEC="\
8 git repack [options]
9 --
10 a pack everything in a single pack
11 A same as -a, and turn unreachable objects loose
12 d remove redundant packs, and run git-prune-packed
13 f pass --no-reuse-object to git-pack-objects
14 n do not run git-update-server-info
15 q,quiet be quiet
16 l pass --local to git-pack-objects
17 Packing constraints
18 window= size of the window used for delta compression
19 window-memory= same as the above, but limit memory size instead of entries count
20 depth= limits the maximum delta depth
21 max-pack-size= maximum size of each packfile
23 SUBDIRECTORY_OK='Yes'
24 . git-sh-setup
26 no_update_info= all_into_one= remove_redundant= unpack_unreachable=
27 local= quiet= no_reuse= extra=
28 while test $# != 0
30 case "$1" in
31 -n) no_update_info=t ;;
32 -a) all_into_one=t ;;
33 -A) all_into_one=t
34 unpack_unreachable=--unpack-unreachable ;;
35 -d) remove_redundant=t ;;
36 -q) quiet=-q ;;
37 -f) no_reuse=--no-reuse-object ;;
38 -l) local=--local ;;
39 --max-pack-size|--window|--window-memory|--depth)
40 extra="$extra $1=$2"; shift ;;
41 --) shift; break;;
42 *) usage ;;
43 esac
44 shift
45 done
47 case "`git config --bool repack.usedeltabaseoffset || echo true`" in
48 true)
49 extra="$extra --delta-base-offset" ;;
50 esac
52 PACKDIR="$GIT_OBJECT_DIRECTORY/pack"
53 PACKTMP="$GIT_OBJECT_DIRECTORY/.tmp-$$-pack"
54 rm -f "$PACKTMP"-*
55 trap 'rm -f "$PACKTMP"-*' 0 1 2 3 15
57 # There will be more repacking strategies to come...
58 case ",$all_into_one," in
59 ,,)
60 args='--unpacked --incremental'
62 ,t,)
63 if [ -d "$PACKDIR" ]; then
64 for e in `cd "$PACKDIR" && find . -type f -name '*.pack' \
65 | sed -e 's/^\.\///' -e 's/\.pack$//'`
67 if [ -e "$PACKDIR/$e.keep" ]; then
68 : keep
69 else
70 args="$args --unpacked=$e.pack"
71 existing="$existing $e"
73 done
74 if test -n "$args" -a -n "$unpack_unreachable"
75 then
76 args="$args $unpack_unreachable"
80 esac
82 args="$args $local $quiet $no_reuse$extra"
83 names=$(git pack-objects --honor-pack-keep --non-empty --all --reflog $args </dev/null "$PACKTMP") ||
84 exit 1
85 if [ -z "$names" ]; then
86 if test -z "$quiet"; then
87 echo Nothing new to pack.
90 for name in $names ; do
91 fullbases="$fullbases pack-$name"
92 chmod a-w "$PACKTMP-$name.pack"
93 chmod a-w "$PACKTMP-$name.idx"
94 mkdir -p "$PACKDIR" || exit
96 for sfx in pack idx
98 if test -f "$PACKDIR/pack-$name.$sfx"
99 then
100 mv -f "$PACKDIR/pack-$name.$sfx" \
101 "$PACKDIR/old-pack-$name.$sfx"
103 done &&
104 mv -f "$PACKTMP-$name.pack" "$PACKDIR/pack-$name.pack" &&
105 mv -f "$PACKTMP-$name.idx" "$PACKDIR/pack-$name.idx" &&
106 test -f "$PACKDIR/pack-$name.pack" &&
107 test -f "$PACKDIR/pack-$name.idx" || {
108 echo >&2 "Couldn't replace the existing pack with updated one."
109 echo >&2 "The original set of packs have been saved as"
110 echo >&2 "old-pack-$name.{pack,idx} in $PACKDIR."
111 exit 1
113 rm -f "$PACKDIR/old-pack-$name.pack" "$PACKDIR/old-pack-$name.idx"
114 done
116 if test "$remove_redundant" = t
117 then
118 # We know $existing are all redundant.
119 if [ -n "$existing" ]
120 then
121 ( cd "$PACKDIR" &&
122 for e in $existing
124 case " $fullbases " in
125 *" $e "*) ;;
126 *) rm -f "$e.pack" "$e.idx" "$e.keep" ;;
127 esac
128 done
131 git prune-packed $quiet
134 case "$no_update_info" in
135 t) : ;;
136 *) git-update-server-info ;;
137 esac