dotfiles/git/scripts/git-github
Joshua Sherman a1b96fd106 Renamed script to shorten syntax
git github-init user repo => git github user rep
2014-01-01 21:56:09 -05:00

9 lines
195 B
Bash
Executable file

#!/bin/bash
# create directory and checkout project from github
# usage: git github joshtronic bash
git init $2
cd $2
git remote add origin git@github.com:$1/$2.git
git pull origin master
cd ..