gitを使い始める...

とりあえず基本的な使い方を覚えねば...。

Create a new repository on the command line

touch README.mdgit initgit add README.mdgit commit -m "first commit"git remote add origin https://github.com/login_name/TestRepo1.gitgit push -u origin master

Push an existing repository from the command line

git remote add origin https://github.com/login_name/TestRepo1.gitgit push -u origin master