Posted 2026-03-01Updated 2026-03-01工具a few seconds read (About 80 words)Git 速记清单 这是一份高频 Git 命令速查表。 常用命令12345git statusgit add .git commit -m "feat: add post"git pull --rebasegit push 常用分支操作123git checkout -b feature/postgit switch maingit merge feature/post 小结 提交前先检查 git status。 拉取优先 git pull --rebase,减少无用合并提交。 Git 速记清单https://jiarus.github.io/2026/03/01/git-notes/AuthorJiaruPosted on2026-03-01Updated on2026-03-01Licensed under#Git工具