Created
April 24, 2013 21:18
Revisions
-
stephenhardy created this gist
Apr 24, 2013 .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,16 @@ -- Initial setup mkdir <YOURPROJECT> cd <YOURPROJECT> git init -- Link to GitHub hosted repos git remote add origin <git@github.com:YOURACCOUNT/YOURREPO.git> git pull origin master -- Add some files git add . git commit -m "YOUR COMMENTS" git push origin master