* [PATCH] Ensure git-repack -a -d --max-pack-size=N deletes correct packs
@ 2007-05-25 2:06 Dana How
0 siblings, 0 replies; only message in thread
From: Dana How @ 2007-05-25 2:06 UTC (permalink / raw)
To: Junio C Hamano; +Cc: Git Mailing List, danahow
The packfile portion of the "remove redundant" code
near the bottom of git-repack.sh is broken when
pack splitting occurs. Particularly since this is
the only place where we automatically delete packfiles,
make sure it works properly for all cases, old or new.
This is based on "next".
Signed-off-by: Dana L. How <danahow@gmail•com>
---
git-repack.sh | 5 +++--
1 files changed, 3 insertions(+), 2 deletions(-)
diff --git a/git-repack.sh b/git-repack.sh
index 4ea6e5b..0591bd7 100755
--- a/git-repack.sh
+++ b/git-repack.sh
@@ -69,6 +69,7 @@ if [ -z "$names" ]; then
echo Nothing new to pack.
fi
for name in $names ; do
+ fullbases="$fullbases pack-$name"
chmod a-w "$PACKTMP-$name.pack"
chmod a-w "$PACKTMP-$name.idx"
if test "$quiet" != '-q'; then
@@ -105,8 +106,8 @@ then
( cd "$PACKDIR" &&
for e in $existing
do
- case "$e" in
- pack-$name) ;;
+ case " $fullbases " in
+ *\ $e\ *) ;;
*) rm -f "$e.pack" "$e.idx" "$e.keep" ;;
esac
done
--
1.5.2.762.gd8c6-dirty
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2007-05-25 2:06 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-05-25 2:06 [PATCH] Ensure git-repack -a -d --max-pack-size=N deletes correct packs Dana How
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox