Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@g5.osdl.org>2005-07-04 00:38:01 +0400
committerLinus Torvalds <torvalds@g5.osdl.org>2005-07-04 00:38:01 +0400
commitb2d46199d24856a05f455236031935dd35b3116f (patch)
treea001d1b98463edd11837b2881c0d1ac3616b8cf6 /git-repack-script
parent1c4a29120240a35b9c02afa636dac3e55ac96cb0 (diff)
Add "git repack" command that does an incremental pack
Diffstat (limited to 'git-repack-script')
-rw-r--r--git-repack-script18
1 files changed, 18 insertions, 0 deletions
diff --git a/git-repack-script b/git-repack-script
new file mode 100644
index 0000000000..ce35235b52
--- /dev/null
+++ b/git-repack-script
@@ -0,0 +1,18 @@
+#!/bin/sh
+: ${GIT_DIR=.git}
+: ${GIT_OBJECT_DIRECTORY="$GIT_DIR/objects"}
+packname=$(date +"pack-%s")
+if [ -f "$GIT_OBJECT_DIRECTORY/pack/$packname.idx" ]; then
+ echo Pack $packname already exists
+ exit 1
+fi
+rm -f $packname.idx $packname.pack
+git-rev-list --unpacked --objects $(git-rev-parse --all) |
+ git-pack-objects --non-empty --incremental $packname ||
+ exit 1
+
+if [ ! -f $packname.idx ]; then
+ echo Nothing new to pack
+ exit 0
+fi
+mv $packname.idx $packname.pack "$GIT_OBJECT_DIRECTORY/pack/"