]> git.ipfire.org Git - thirdparty/git.git/blame - git-repack.sh
t7700-repack: add two new tests demonstrating repacking flaws
[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=
479b56ba 27local= quiet= 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 ;;
cec2be76 36 -q) quiet=-q ;;
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
03a9683d
JH
74 if test -n "$existing"
75 then
76 args="--kept-pack-only"
77 fi
83d0289d
BC
78 if test -n "$args" -a -n "$unpack_unreachable" -a \
79 -n "$remove_redundant"
f7991d1e
BC
80 then
81 args="$args $unpack_unreachable"
82 fi
65aa5302 83 fi
d5acdcf1
JH
84 ;;
85esac
0ea2582d 86
479b56ba 87args="$args $local $quiet $no_reuse$extra"
dd718365 88names=$(git pack-objects --honor-pack-keep --non-empty --all --reflog $args </dev/null "$PACKTMP") ||
b2d46199 89 exit 1
6b94b1a0 90if [ -z "$names" ]; then
d9fb395a
UKK
91 if test -z "$quiet"; then
92 echo Nothing new to pack.
93 fi
6b94b1a0
DH
94fi
95for name in $names ; do
dca3957b 96 fullbases="$fullbases pack-$name"
ad2c82c0
NP
97 chmod a-w "$PACKTMP-$name.pack"
98 chmod a-w "$PACKTMP-$name.idx"
178613c7 99 mkdir -p "$PACKDIR" || exit
d5acdcf1 100
2ad47d61
JH
101 for sfx in pack idx
102 do
103 if test -f "$PACKDIR/pack-$name.$sfx"
104 then
105 mv -f "$PACKDIR/pack-$name.$sfx" \
106 "$PACKDIR/old-pack-$name.$sfx"
107 fi
108 done &&
0ea2582d
ML
109 mv -f "$PACKTMP-$name.pack" "$PACKDIR/pack-$name.pack" &&
110 mv -f "$PACKTMP-$name.idx" "$PACKDIR/pack-$name.idx" &&
2ad47d61
JH
111 test -f "$PACKDIR/pack-$name.pack" &&
112 test -f "$PACKDIR/pack-$name.idx" || {
113 echo >&2 "Couldn't replace the existing pack with updated one."
114 echo >&2 "The original set of packs have been saved as"
115 echo >&2 "old-pack-$name.{pack,idx} in $PACKDIR."
116 exit 1
117 }
118 rm -f "$PACKDIR/old-pack-$name.pack" "$PACKDIR/old-pack-$name.idx"
6b94b1a0 119done
d5acdcf1 120
0adb3358 121if test "$remove_redundant" = t
d5acdcf1 122then
ce859074
SP
123 # We know $existing are all redundant.
124 if [ -n "$existing" ]
62af0b53 125 then
6ed64058
JH
126 ( cd "$PACKDIR" &&
127 for e in $existing
128 do
dca3957b
DH
129 case " $fullbases " in
130 *" $e "*) ;;
ce859074 131 *) rm -f "$e.pack" "$e.idx" "$e.keep" ;;
62af0b53 132 esac
6ed64058
JH
133 done
134 )
d5acdcf1 135 fi
5be60078 136 git prune-packed $quiet
d5acdcf1 137fi
ccf1ee32 138
ccf1ee32
JH
139case "$no_update_info" in
140t) : ;;
141*) git-update-server-info ;;
142esac