summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xgit-push-all3
1 files changed, 1 insertions, 2 deletions
diff --git a/git-push-all b/git-push-all
index 18fd4f9..cf90de9 100755
--- a/git-push-all
+++ b/git-push-all
@@ -2,8 +2,7 @@
#
opts=${1:-"--all"}
echo -e "\033[0;31mgit repack\033[0m"
-git fsck --unreachable && git prune && git gc --aggressive
-git repack -ad --depth=250 --window=250
+git gc --prune --aggressive
for host in $(git remote); do
echo -e "\033[0;35mpush to \033[0;31m$host \033[0;36m$opts\033[0m" && git push $opts $host
done