Github側でリポジトリを作成した後で以下のコマンドを実行してGithubにソースコードをプッシュします。
cd C:\home\user\samples\sample-play-app/ git init git add . git commit -m "first commit" git remote add origin2 https://github.com/Name/AppName.git git push -u origin2 master
https://github.com/YoshiteruIwasaki/sample-play-java-app
これでバージョン管理ができるようになりました。