<pushした流れをメモ>
$ git branch -a // ブランチの確認
$ git status // 変更ファイルの確認
$ git add -A // 全部のファイルをあげる
$ git status // あがっているか確認
$ git commit -m "コミットメッセージ" // コミット
$ git status // コミットできているか確認
$ git push origin 自分のリポジトリ名 // プッシュ