$ cd Foo
$ touch README.md
$ git init
$ git add .
$ git commit -m "Initial commit"
Link your repo between local & remote, then push to remote:
$ git remote add origin [email protected]:<your_username>/Foo.git $ git push -u origin master
$ cd Foo
$ touch README.md
$ git init
$ git add .
$ git commit -m "Initial commit"
Link your repo between local & remote, then push to remote:
$ git remote add origin [email protected]:<your_username>/Foo.git $ git push -u origin master