Github solution
1 2 3 4 5 6 7 8 9 10 11 12 13 |
$ git init $ git add . $ git commit -m "First commit" $ git remote add origin [remote repository URL] $ git remote -v git branch --set-upstream-to=origin/master master $ git push origin master |
Reference: