git
既存のプロジェクトを、Git Repoに追加する
1. Repoを新規作成
2. 初期化
git init
git add .
git commit -m 'First commit'
3. リモートの追加
git remote add origin <remote repository URL>
確認
git remote -v
4. GIT プッシュ
git push origin master
Done!
Git switch branche
git branch
git checkout dev
ここに編集
git add, commit, and push