Skip to content

Instantly share code, notes, and snippets.

@doitian
Created October 16, 2009 08:17
Show Gist options
  • Save doitian/211645 to your computer and use it in GitHub Desktop.
Save doitian/211645 to your computer and use it in GitHub Desktop.
groot() {
local dir=`pwd`
dir=${dir%/}
until [ -z "$dir" -o -d "$dir/.git" ]; do
dir=${dir%/*}
done
cd "$dir/"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment