Created
June 19, 2009 15:58
-
-
Save timkelty/132697 to your computer and use it in GitHub Desktop.
Revisions
-
timkelty created this gist
Jun 19, 2009 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,14 @@ # !/bin/bash # Set up an new github repository GITHUB_USERNAME="timkelty" # from github instructions page after creating a repo mkdir "$1" cd "$1" git init touch README git add README git commit -m 'first commit' git remote add origin git@github.com:"$GITHUB_USERNAME"/"$1".git git push origin master