Skip to content

Instantly share code, notes, and snippets.

@kamilogorek
Last active December 23, 2015 05:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kamilogorek/6586221 to your computer and use it in GitHub Desktop.
Save kamilogorek/6586221 to your computer and use it in GitHub Desktop.
<code>$ mkdir [your-project]</code>
<code>$ cd [your-project]</code>
<code>$ git init</code>
<code>$ git remote add origin [repo-url]</code>
<code>$ touch README.md (to create README file)</code>
<code>$ git add README.md</code>
<code>$ git commit -m "Init commit"</code>
<code>$ git push origin master -u</code>
https://gist.github.com/kamilogorek/6586221
https://gist.github.com/kamilogorek/6586221
https://gist.github.com/kamilogorek/6586221
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment