131221_03:Gitの勉強

git入門
http://dotinstall.com/lessons/basic_git

公式ドキュメント
http://git-scm.com/book/ja/Git-%E3%81%AE%E5%9F%BA%E6%9C%AC-Git-%E3%83%AA%E3%83%9D%E3%82%B8%E3%83%88%E3%83%AA%E3%81%AE%E5%8F%96%E5%BE%97
は2章が重要!

この2つでさらにインプット

よく使うコマンド
git init
git add
git status
git diff
git add .
git rm
git mv
git ignore
git commit -m “~”
git commit --amend
git reset --hard HEAD
git reset --hard HEAD^
git reset --hard ORIG_HEAD
git branch
git branch (branch name)
git checkout (branch name)
git merge (branch name)
git branch -d (branch name)
git tag
git tag (tag name)
git tag (tag name) (commit id)
git tag -d (tag name)
git push origin master