8 lines
71 B
Bash
8 lines
71 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
# git cleanup
|
||
|
|
||
|
git gc --aggressive
|
||
|
git repack -Ad
|
||
|
git prune
|