]> git.ipfire.org Git - thirdparty/git.git/blame - git-repack.sh
Remove now unnecessary 'sync()' calls
[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="\
8git-repack [options]
9--
10a pack everything in a single pack
ca11b212 11A same as -a, and turn unreachable objects loose
5715d0bb
PH
12d remove redundant packs, and run git-prune-packed
13f pass --no-reuse-delta 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
b6945f57
JH
47# Later we will default repack.UseDeltaBaseOffset to true
48default_dbo=false
49
e0d10e1c 50case "`git config --bool repack.usedeltabaseoffset ||
b6945f57
JH
51 echo $default_dbo`" in
52true)
53 extra="$extra --delta-base-offset" ;;
54esac
55
d5acdcf1 56PACKDIR="$GIT_OBJECT_DIRECTORY/pack"
6b94b1a0 57PACKTMP="$GIT_OBJECT_DIRECTORY/.tmp-$$-pack"
0ea2582d
ML
58rm -f "$PACKTMP"-*
59trap 'rm -f "$PACKTMP"-*' 0 1 2 3 15
d5acdcf1
JH
60
61# There will be more repacking strategies to come...
62case ",$all_into_one," in
63,,)
cd0d74d2 64 args='--unpacked --incremental'
d5acdcf1
JH
65 ;;
66,t,)
ce859074
SP
67 if [ -d "$PACKDIR" ]; then
68 for e in `cd "$PACKDIR" && find . -type f -name '*.pack' \
69 | sed -e 's/^\.\///' -e 's/\.pack$//'`
70 do
71 if [ -e "$PACKDIR/$e.keep" ]; then
72 : keep
73 else
74 args="$args --unpacked=$e.pack"
75 existing="$existing $e"
76 fi
77 done
78 fi
65aa5302
JH
79 if test -z "$args"
80 then
81 args='--unpacked --incremental'
ca11b212 82 elif test -n "$unpack_unreachable"
65aa5302 83 then
ca11b212 84 args="$args $unpack_unreachable"
65aa5302 85 fi
d5acdcf1
JH
86 ;;
87esac
0ea2582d 88
479b56ba 89args="$args $local $quiet $no_reuse$extra"
5be60078 90names=$(git pack-objects --non-empty --all --reflog $args </dev/null "$PACKTMP") ||
b2d46199 91 exit 1
6b94b1a0 92if [ -z "$names" ]; then
d9fb395a
UKK
93 if test -z "$quiet"; then
94 echo Nothing new to pack.
95 fi
6b94b1a0
DH
96fi
97for name in $names ; do
dca3957b 98 fullbases="$fullbases pack-$name"
ad2c82c0
NP
99 chmod a-w "$PACKTMP-$name.pack"
100 chmod a-w "$PACKTMP-$name.idx"
178613c7 101 mkdir -p "$PACKDIR" || exit
d5acdcf1 102
2ad47d61
JH
103 for sfx in pack idx
104 do
105 if test -f "$PACKDIR/pack-$name.$sfx"
106 then
107 mv -f "$PACKDIR/pack-$name.$sfx" \
108 "$PACKDIR/old-pack-$name.$sfx"
109 fi
110 done &&
0ea2582d
ML
111 mv -f "$PACKTMP-$name.pack" "$PACKDIR/pack-$name.pack" &&
112 mv -f "$PACKTMP-$name.idx" "$PACKDIR/pack-$name.idx" &&
2ad47d61
JH
113 test -f "$PACKDIR/pack-$name.pack" &&
114 test -f "$PACKDIR/pack-$name.idx" || {
115 echo >&2 "Couldn't replace the existing pack with updated one."
116 echo >&2 "The original set of packs have been saved as"
117 echo >&2 "old-pack-$name.{pack,idx} in $PACKDIR."
118 exit 1
119 }
120 rm -f "$PACKDIR/old-pack-$name.pack" "$PACKDIR/old-pack-$name.idx"
6b94b1a0 121done
d5acdcf1 122
0adb3358 123if test "$remove_redundant" = t
d5acdcf1 124then
ce859074
SP
125 # We know $existing are all redundant.
126 if [ -n "$existing" ]
62af0b53 127 then
6ed64058
JH
128 ( cd "$PACKDIR" &&
129 for e in $existing
130 do
dca3957b
DH
131 case " $fullbases " in
132 *" $e "*) ;;
ce859074 133 *) rm -f "$e.pack" "$e.idx" "$e.keep" ;;
62af0b53 134 esac
6ed64058
JH
135 done
136 )
d5acdcf1 137 fi
5be60078 138 git prune-packed $quiet
d5acdcf1 139fi
ccf1ee32 140
ccf1ee32
JH
141case "$no_update_info" in
142t) : ;;
143*) git-update-server-info ;;
144esac