Skip to content

Instantly share code, notes, and snippets.

@malles
Created January 4, 2014 11:44
Show Gist options
  • Save malles/8254602 to your computer and use it in GitHub Desktop.
Save malles/8254602 to your computer and use it in GitHub Desktop.
Een Git Repository creëren via de Command Line
~$ mkdir projectname
~$ cd projectname
~$ git init
~$ touch file1
~$ git add file1
~$ git commit -m 'first commit'
~$ git remote add origin git@github.com:USER/REPO.git
~$ git push origin master
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment