会社でよく使うコマンド整理
$ git clone https://xxx
$ git branch -a
$ git checkout branch-name
$ git checkout -b new-branch
$ git add .
$ git checkout .
$ git stash
$ git stash list
$ git stash apply stash@{0}
$ git commit -m "comment"
$ git log --name-only
$ git merge branch-name
$ git merge --squash branch-name
$ git push origin branch-name
master <- develop <- feature-branch