python3 系でしか動きません
# shellで
$ python main.py
# or
$ python3 main.py
標準出力にモータの回転角が表示されます
# shellで
$ GAME_ENV=dev python main.py
# or
$ GAME_ENV=dev python3 main.py
- アップロードするファイルを決める staging
# 全部のとき
git add -A
# 一部のとき
git add <file名>
- コミット 変更を確定する。(ローカルで)
git commit
# 変更した内容(commit log) を示す
git commit -m "<commit log>"
- プッシュ リモートリポジトリにコミット内容をコピー
git push
# or
git push origin master
git pull
git status
git log
Q で終了