One thing people always want is the ability to easily use the virtualenv created by snakegit. Here is an easy way to accomplish that. If you add these functions to either your ~/.bash_profile or your ~/.profile file, then you will have 2 new commands you can run. N.B. you can call the functions whatever you want, but snakeskin and shed are kinda cute and came from Walt
# in your project directory call snakeskin to activate
function snakeskin()
{
export OLDPATH=$PATH
test -f snake.cfg || (echo "Not a snake project" ; return 0)
test -f vendor/python/bin/activate || git snake build
source vendor/python/bin/activate
export PATH=$PATH:~/.snakegit/bin