Created
November 16, 2012 17:14
-
Star
(301)
You must be signed in to star a gist -
Fork
(124)
You must be signed in to fork a gist
-
-
Save c0ldlimit/4089101 to your computer and use it in GitHub Desktop.
Revisions
-
c0ldlimit created this gist
Nov 16, 2012 .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,13 @@ # Create a new repository on the command line touch README.md git init git add README.md git commit -m "first commit" git remote add origin https://github.com/c0ldlimit/vimcolors.git git push -u origin master # Push an existing repository from the command line git remote add origin https://github.com/c0ldlimit/vimcolors.git git push -u origin master