ほんとに簡単にメモ書き
github
$ git init
$ git add .
ここでもしaddできなかった場合は、-uで変更したファイルをaddできる
github
$ git add -u
$ git add 指定したファイル
新規作成したリポジトリ等は直接指定してaddすればできるはず。
github
$ git commit -m ‘message’
$ git status
# On branch master
# Your branch is ahead of 'origin/master’ by 1 commit.
statusでコミットを確認できればpushでOK
github
$ git push