完全に自分用です
#自分のアカウントにリポジトリを作成
ここで設定するのはリポジトリ名くらいでとりあえず良い
https://github.com/...のアドレスを次で使うので念頭に
#cdへ
cd awesomeapp
#次にgit初期化
git init
#これでいける
git add .
git commit -m "なんちゃら"
git remote add origin https://github.com/...
git push master origin
#二回目からは
git status
git add .
git commit -m "なんちゃら"
git push origin master
でいける