]> git.phdru.name Git - git-scripts.git/commitdiff
Run 'git repack' instead of 'git gc'
authorOleg Broytman <phd@phdru.name>
Tue, 2 Dec 2014 23:43:15 +0000 (02:43 +0300)
committerOleg Broytman <phd@phdru.name>
Tue, 2 Dec 2014 23:43:15 +0000 (02:43 +0300)
publish2web
svn/svn2git

index eff60e31a684693bf1a564fa9f10352f4c52a690..c66a6940b2c4655887789aa6f5e5946f237d03cd 100755 (executable)
@@ -18,7 +18,8 @@ dest_dir="`basename \"$source_dir\"`".git &&
 git clone --mirror --config core.sharedRepository=0644 "$source_dir" "$dest_dir" &&
 
 cd "$dest_dir" &&
-git gc --aggressive && git fsck --strict &&
+git repack -a -d -f --depth=250 --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 . &&
 if [ "`cat \"$source_dir\"/.git/description`" = \
index b225f69e6ff3c7ce03997d523297b84ccd9e2b43..d5853daa88e1e28da6a2b620727b17e9fb77df21 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 gc --aggressive &&
+git repack -a -d -f --depth=250 --window=250 &&
 echo "Cloned from $url using git-svn" >.git/description &&
 exec "${VISUAL:-${EDITOR:-vi}}" .git/description