Git 使用
git stash
- git stash list 查看所有stash
- git stash clear 清除所有stash
- git stash drop stash@{index} 清除index stash
- git stash pop
- git stash save '注释' 加备注
git 查看历史
- git log 文件名
- git reflog 文件名
修改提交信息
- git commit --amend
合并特定 commit 到指定分支
git checkout [指定分支]
git cherry-pick [commit]