diff options
-rwxr-xr-x | git-gc | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -1,6 +1,7 @@ #! /bin/sh -echo "* prune" && git prune && \ + +echo "* repack" && git repack -adf && \ + echo "* prune" && git prune && \ echo "* prune-packed" && git prune-packed && \ echo "* gc" && git gc --aggressive && \ - echo "* repack" && git repack -a && \ echo "* done" |