diff options
Diffstat (limited to 'git-gc')
-rwxr-xr-x | git-gc | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -0,0 +1,6 @@ +#! /bin/sh +echo "* prune" && git prune && \ + echo "* prune-packed" && git prune-packed && \ + echo "* gc" && git gc --aggressive && \ + echo "* repack" && git repack -a && \ + echo "* done" |