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]
posted @ 2022-12-03 10:39  卑面派对  阅读(9)  评论(0编辑  收藏  举报