Github(+Git)の使い方
ーーー既知の使い方ーーー
導入コマンド
git init
git clone
git pull
更新コマンド
git add .
git commit -m "コマンド"
git push origin master
ーーー新たに覚えたことーーー
プルリクエストの概念
(pull request → merge の流れと方法)
https://backlog.com/ja/git-tutorial/pull-request/01/
ブランチの操作(作成・切り替え・統合・削除)
git branch <branchname>
git checkout <branch>
git marge <commit>
git branch -d <branchname>
https://backlog.com/ja/git-tutorial/stepup/07/