对于我个人而言,大概有下面几类git命令:

  1. 常用的、不需要记忆的、熟练的git命令
  2. 有用的、需要记忆的、不熟练的git命令
  3. 可以被图形化界面替代的、偶尔用到的git命令
  4. 其他命令

下面主要记录后三种:

本地查看

git diff
git diff --staged
git log --all --graph --decorate --oneline

本地编辑

git rm --cached filename
git reset HEAD <file>
git checkout -- filename

分支

git branch [branch-name]
git checkout [branch-name]
git checkout -b [branch-name]
git tag

与remote互动

git clone -b cling-latest --depth=1 path-to/gitrepo.git localrepo --config core.sshCommand="ssh -i /path/to/id_rsa"
git remote -v
git fetch [remote-name]
git push [remote-name] [branch-name]
请随意转载