Skip to content

Instantly share code, notes, and snippets.

@ainame
Created December 17, 2011 08:32
Show Gist options
  • Select an option

  • Save ainame/1489701 to your computer and use it in GitHub Desktop.

Select an option

Save ainame/1489701 to your computer and use it in GitHub Desktop.
#リポジトリのルートに飛ぶ
function cdr(){
if [ -e .git -a -d .git ]; then
return 0
else
cd ../
cdr
fi
return 0
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment