]> git.phdru.name Git - git-scripts.git/commitdiff
Run git gc --aggressive
authorOleg Broytman <phd@phdru.name>
Fri, 2 Jan 2015 20:33:25 +0000 (23:33 +0300)
committerOleg Broytman <phd@phdru.name>
Fri, 2 Jan 2015 20:33:25 +0000 (23:33 +0300)
publish2web
svn/svn2git

index e9652d5f411f78b98d7f7dd662fd7e3253082a97..af746e6dfaecc7d6808aa14a38beee282f8fb341 100755 (executable)
@@ -18,6 +18,7 @@ dest_dir="`basename \"$source_dir\"`".git &&
 git clone --mirror --config core.sharedRepository=0644 "$source_dir" "$dest_dir" &&
 
 cd "$dest_dir" &&
+git gc --aggressive &&
 git repack -a -d -f --depth=20 --window=250 &&
 git fsck --strict &&
 cp -p hooks/post-update.sample hooks/post-update && hooks/post-update &&
index 57bf7f264e6b9d387743e08344a9368810cee903..dde280f4f77b485960389d3b960100619ddf9e27 100755 (executable)
@@ -55,6 +55,7 @@ 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=20 --window=250 &&
 echo "Cloned from $url using git-svn" >.git/description &&
 exec "${VISUAL:-${EDITOR:-vi}}" .git/description