]> git.phdru.name Git - git-scripts.git/commitdiff
Change git repack depth from 250 to 20
authorOleg Broytman <phd@phdru.name>
Fri, 2 Jan 2015 20:31:37 +0000 (23:31 +0300)
committerOleg Broytman <phd@phdru.name>
Fri, 2 Jan 2015 20:31:37 +0000 (23:31 +0300)
gc-and-repack
publish2web
repack-not-packed
svn/svn2git

index ff1633817750c1b347b851dc649876fe3a6f87ff..393ca28bc0e4451799c700650ead2a6fe2d03134 100755 (executable)
@@ -5,6 +5,6 @@ for d in `"$prog_dir"/ls-not-packed`
 do
    echo "----- $d -----" && cd "$d" &&
    git gc --aggressive &&
-   git repack -a -d -f --depth=250 --window=250 &&
+   git repack -a -d -f --depth=20 --window=250 &&
    git fsck --strict || exit 1
 done
index c66a6940b2c4655887789aa6f5e5946f237d03cd..e9652d5f411f78b98d7f7dd662fd7e3253082a97 100755 (executable)
@@ -18,7 +18,7 @@ dest_dir="`basename \"$source_dir\"`".git &&
 git clone --mirror --config core.sharedRepository=0644 "$source_dir" "$dest_dir" &&
 
 cd "$dest_dir" &&
-git repack -a -d -f --depth=250 --window=250 &&
+git repack -a -d -f --depth=20 --window=250 &&
 git fsck --strict &&
 cp -p hooks/post-update.sample hooks/post-update && hooks/post-update &&
 cp -p "$HOME"/Internet/WWW/htdocs/git.phdru.name/phdru.name/phdru.name.git/git-daemon-export-ok . &&
index 88b88bc182d7dc3a5d7ab36aa755e2f91c6ea4ed..995613b9eda354bf608d4806726e0aa1aa113e6f 100755 (executable)
@@ -4,6 +4,6 @@ prog_dir=`dirname "$0"`
 for d in `"$prog_dir"/ls-not-packed`
 do
    echo "----- $d -----" && cd "$d" &&
-   git repack -a -d -f --depth=250 --window=250 &&
+   git repack -a -d -f --depth=20 --window=250 &&
    git fsck --strict || exit 1
 done
index 6ca904c16eda2d540008282d8f6b4dc059fc169d..57bf7f264e6b9d387743e08344a9368810cee903 100755 (executable)
@@ -55,6 +55,6 @@ cp -p ../authors.txt .git/info &&
 git config --local --path svn.authorsfile .git/info/authors.txt
 
 git svn gc &&
-git repack -a -d -f --depth=250 --window=250 &&
+git repack -a -d -f --depth=20 --window=250 &&
 echo "Cloned from $url using git-svn" >.git/description &&
 exec "${VISUAL:-${EDITOR:-vi}}" .git/description