dotfiles/git/git-github-init
2011-11-09 11:57:03 -05:00

7 lines
107 B
Bash
Executable file

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