Added script to easily git init and pull a github repo.

This commit is contained in:
Josh Sherman 2011-08-05 21:52:09 -04:00
parent cf53611fcd
commit 2a7ad02751

6
github-init Executable file
View file

@ -0,0 +1,6 @@
#!/bin/bash
git init $2
cd $2
git remote add origin git@github.com:$1/$2.git
git pull origin master
cd ..