Skip to content

Instantly share code, notes, and snippets.

@EvanDotPro
Created February 15, 2011 17:24
Show Gist options
  • Save EvanDotPro/384252d5140caa96bcea to your computer and use it in GitHub Desktop.
Save EvanDotPro/384252d5140caa96bcea to your computer and use it in GitHub Desktop.
#! /bin/bash
# Define your workspace path here
WORKSPACE=/srv/dropbox
find $WORKSPACE -name '.git' -type d | while read line; do
cd "$line/../"
git fsck && git gc
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment