Skip to content

Instantly share code, notes, and snippets.

@gbertb
Forked from webdevwilson/.profile
Created November 9, 2013 08:36
Show Gist options
  • Save gbertb/7383161 to your computer and use it in GitHub Desktop.
Save gbertb/7383161 to your computer and use it in GitHub Desktop.
# overload cd to gc git when entering a directory
cd () {
builtin cd "$@"
if [ -d ".git" ]; then
(git gc --quiet &)
fi
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment