Open3

ローカルのプロジェクトをGitHubの新規リポジトリにpushする

so-heyso-hey

まずGitHubでリポジトリを作成.
このときREADME.mdファイルは作らないように注意.

so-heyso-hey

リモートプロジェクトに移動し,以下のコマンドを打つ.

git remote add origin <url>
git add .
git commit -m "commit message"
git push --set-upstream origin master