Gitコマンドの覚書
https://www.atlassian.com/ja/git/tutorial/git-basics#!clone
git clone <repo> <directory>
ブランチの確認
git branch -a
logの確認
変更のcommit
https://www.atlassian.com/ja/git/tutorial/git-basics#!commit
commitのリバート
https://www.atlassian.com/ja/git/tutorial/undoing-changes#!revert
git revert <commitの"SHA-1 id">
https://www.atlassian.com/ja/git/tutorial/undoing-changes#!reset
https://www.atlassian.com/ja/git/tutorial/undoing-changes#!clean
pullする。
https://www.atlassian.com/ja/git/tutorial/remote-repositories#!pull
git pull <remote> <branch>
pushする。
https://www.atlassian.com/ja/git/tutorial/remote-repositories#!push
git push <remote> <branch>
fetchする。
https://www.atlassian.com/ja/git/tutorial/remote-repositories#!fetch
git fetch <remote> <branch>
= (remote)/(branch)
branchの場所