]> git.ipfire.org Git - thirdparty/git.git/blame - git-repack.sh
Makefile: Include subdirectories in "make cover" reports
[thirdparty/git.git] / git-repack.sh
CommitLineData
b2d46199 1#!/bin/sh
ccf1ee32
JH
2#
3# Copyright (c) 2005 Linus Torvalds
4#
5
5715d0bb
PH
6OPTIONS_KEEPDASHDASH=
7OPTIONS_SPEC="\
1b1dd23f 8git repack [options]
5715d0bb
PH
9--
10a pack everything in a single pack
ca11b212 11A same as -a, and turn unreachable objects loose
5715d0bb 12d remove redundant packs, and run git-prune-packed
8d11fdea 13f pass --no-reuse-object to git-pack-objects
2b36b146 14n do not run git-update-server-info
5715d0bb
PH
15q,quiet be quiet
16l pass --local to git-pack-objects
17 Packing constraints
18window= size of the window used for delta compression
19window-memory= same as the above, but limit memory size instead of entries count
20depth= limits the maximum delta depth
21max-pack-size= maximum size of each packfile
22"
d0b353b1 23SUBDIRECTORY_OK='Yes'
ae2b0f15 24. git-sh-setup
ccb36504 25
ca11b212 26no_update_info= all_into_one= remove_redundant= unpack_unreachable=
2e6a30ef 27local= no_reuse= extra=
822f7c73 28while test $# != 0
ccf1ee32
JH
29do
30 case "$1" in
31 -n) no_update_info=t ;;
d5acdcf1 32 -a) all_into_one=t ;;
65aa5302 33 -A) all_into_one=t
ca11b212 34 unpack_unreachable=--unpack-unreachable ;;
0adb3358 35 -d) remove_redundant=t ;;
2e6a30ef 36 -q) GIT_QUIET=t ;;
479b56ba 37 -f) no_reuse=--no-reuse-object ;;
cec2be76 38 -l) local=--local ;;
5715d0bb
PH
39 --max-pack-size|--window|--window-memory|--depth)
40 extra="$extra $1=$2"; shift ;;
41 --) shift; break;;
9678faaa 42 *) usage ;;
ccf1ee32
JH
43 esac
44 shift
45done
46
22c79eab 47case "`git config --bool repack.usedeltabaseoffset || echo true`" in
b6945f57
JH
48true)
49 extra="$extra --delta-base-offset" ;;
50esac
51
d5acdcf1 52PACKDIR="$GIT_OBJECT_DIRECTORY/pack"
6b94b1a0 53PACKTMP="$GIT_OBJECT_DIRECTORY/.tmp-$$-pack"
0ea2582d
ML
54rm -f "$PACKTMP"-*
55trap 'rm -f "$PACKTMP"-*' 0 1 2 3 15
d5acdcf1
JH
56
57# There will be more repacking strategies to come...
58case ",$all_into_one," in
59,,)
cd0d74d2 60 args='--unpacked --incremental'
d5acdcf1
JH
61 ;;
62,t,)
2478dc84 63 args= existing=
ce859074
SP
64 if [ -d "$PACKDIR" ]; then
65 for e in `cd "$PACKDIR" && find . -type f -name '*.pack' \
66 | sed -e 's/^\.\///' -e 's/\.pack$//'`
67 do
68 if [ -e "$PACKDIR/$e.keep" ]; then
69 : keep
70 else
ce859074
SP
71 existing="$existing $e"
72 fi
73 done
171110a4 74 if test -n "$existing" -a -n "$unpack_unreachable" -a \
83d0289d 75 -n "$remove_redundant"
f7991d1e
BC
76 then
77 args="$args $unpack_unreachable"
78 fi
65aa5302 79 fi
d5acdcf1
JH
80 ;;
81esac
0ea2582d 82
2e6a30ef 83args="$args $local ${GIT_QUIET:+-q} $no_reuse$extra"
7f3140cd 84names=$(git pack-objects --keep-true-parents --honor-pack-keep --non-empty --all --reflog $args </dev/null "$PACKTMP") ||
b2d46199 85 exit 1
6b94b1a0 86if [ -z "$names" ]; then
2e6a30ef 87 say Nothing new to pack.
6b94b1a0 88fi
d5acdcf1 89
3e6b1d0a
JH
90# Ok we have prepared all new packfiles.
91mkdir -p "$PACKDIR" || exit
92
93# First see if there are packs of the same name and if so
94# if we can move them out of the way (this can happen if we
95# repacked immediately after packing fully.
96rollback=
97failed=
98for name in $names
99do
2ad47d61
JH
100 for sfx in pack idx
101 do
3e6b1d0a
JH
102 file=pack-$name.$sfx
103 test -f "$PACKDIR/$file" || continue
104 rm -f "$PACKDIR/old-$file" &&
105 mv "$PACKDIR/$file" "$PACKDIR/old-$file" || {
106 failed=t
107 break
108 }
109 rollback="$rollback $file"
110 done
111 test -z "$failed" || break
112done
113
114# If renaming failed for any of them, roll the ones we have
115# already renamed back to their original names.
116if test -n "$failed"
117then
118 rollback_failure=
119 for file in $rollback
120 do
121 mv "$PACKDIR/old-$file" "$PACKDIR/$file" ||
122 rollback_failure="$rollback_failure $file"
123 done
124 if test -n "$rollback_failure"
125 then
126 echo >&2 "WARNING: Some packs in use have been renamed by"
127 echo >&2 "WARNING: prefixing old- to their name, in order to"
128 echo >&2 "WARNING: replace them with the new version of the"
129 echo >&2 "WARNING: file. But the operation failed, and"
130 echo >&2 "WARNING: attempt to rename them back to their"
131 echo >&2 "WARNING: original names also failed."
132 echo >&2 "WARNING: Please rename them in $PACKDIR manually:"
133 for file in $rollback_failure
134 do
135 echo >&2 "WARNING: old-$file -> $file"
136 done
137 fi
138 exit 1
139fi
140
141# Now the ones with the same name are out of the way...
142fullbases=
143for name in $names
144do
145 fullbases="$fullbases pack-$name"
146 chmod a-w "$PACKTMP-$name.pack"
147 chmod a-w "$PACKTMP-$name.idx"
0ea2582d 148 mv -f "$PACKTMP-$name.pack" "$PACKDIR/pack-$name.pack" &&
3e6b1d0a
JH
149 mv -f "$PACKTMP-$name.idx" "$PACKDIR/pack-$name.idx" ||
150 exit
151done
152
153# Remove the "old-" files
154for name in $names
155do
156 rm -f "$PACKDIR/old-pack-$name.idx"
157 rm -f "$PACKDIR/old-pack-$name.pack"
6b94b1a0 158done
d5acdcf1 159
3e6b1d0a
JH
160# End of pack replacement.
161
0adb3358 162if test "$remove_redundant" = t
d5acdcf1 163then
ce859074
SP
164 # We know $existing are all redundant.
165 if [ -n "$existing" ]
62af0b53 166 then
6ed64058
JH
167 ( cd "$PACKDIR" &&
168 for e in $existing
169 do
dca3957b
DH
170 case " $fullbases " in
171 *" $e "*) ;;
ce859074 172 *) rm -f "$e.pack" "$e.idx" "$e.keep" ;;
62af0b53 173 esac
6ed64058
JH
174 done
175 )
d5acdcf1 176 fi
2e6a30ef 177 git prune-packed ${GIT_QUIET:+-q}
d5acdcf1 178fi
ccf1ee32 179
ccf1ee32
JH
180case "$no_update_info" in
181t) : ;;
e1dc49bc 182*) git update-server-info ;;
ccf1ee32 183esac