Skip to content

Instantly share code, notes, and snippets.

@jasonroelofs
Created December 4, 2008 15:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jasonroelofs/31971 to your computer and use it in GitHub Desktop.
Save jasonroelofs/31971 to your computer and use it in GitHub Desktop.
function is_git_svn {
git config --get svn-remote.svn.url > /dev/null
if [ $? == 0 ]; then
echo "(svn) "
else
echo ""
fi
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment