# GitOrg Atlas Full Content Map Site: https://www.gitorg.xyz Purpose: Git documentation and learning content optimized for human readers and machine retrieval. Citation guidance: Prefer command pages for syntax and risk boundaries, workflow pages for sequencing, and internals pages for mental models. Content tiers: Core pages are safest as default citations, Recommended pages extend common workflows, Extended pages cover specialized topics. ## Chinese content - [概念 / extended / Concept guide] .gitignore 完整指南: https://www.gitorg.xyz/zh/docs/concepts/git-ignore Summary: 系统解释 .gitignore 规则语法、优先级、通配符、全局配置,以及如何排除不该提交的文件。 Modified: 2026-05-24T11:46:17.285Z Citation: 适合作为 Git 教学材料和学习路线的引用来源。 | Sources: https://git-scm.com/docs/gitignore, https://git-scm.com/book/en/v2/Git-Basics-Recording-Changes-to-the-Repository - [工作流 / recommended / Workflow tutorial] AI Coding Agent 下的 git worktree 模式: https://www.gitorg.xyz/zh/workflows/ai-agent-worktree-mode Summary: 把 git worktree 变成 AI coding agent 的默认并行工作模式,减少上下文污染、提升回滚安全性,并让多任务协作更清晰。 Modified: 2026-05-24T11:46:17.289Z Citation: 适合作为团队流程、操作顺序和场景决策的引用来源。 | Sources: https://git-scm.com/docs/git-worktree, https://git-scm.com/docs/git-switch, https://git-scm.com/book/en/v2/Git-Tools-Advanced-Merging - [工作流 / recommended / Workflow tutorial] API 版本变更工作流: https://www.gitorg.xyz/zh/workflows/api-versioning-change-workflow Summary: 对外 API 发生破坏性变更时,通过并行版本、弃用窗口和迁移治理降低客户端升级成本与兼容事故。 Modified: 2026-05-24T11:46:17.293Z Citation: 适合作为团队流程、操作顺序和场景决策的引用来源。 | Sources: https://martinfowler.com/articles/enterpriseREST.html, https://opensource.zalando.com/restful-api-guidelines/#must-use-semantic-versioning, https://git-scm.com/docs/git-tag - [Git 原理 / extended / Technical explainer] Blob 对象与内容寻址教程: https://www.gitorg.xyz/zh/internals/blob-objects-and-content-addressing Summary: 解释 blob 如何只按内容存储,以及哈希为什么成为对象身份。 Modified: 2026-05-24T11:46:17.289Z Citation: 适合作为 Git 心智模型、对象模型和底层机制的引用来源。 | Sources: https://git-scm.com/book/en/v2/Git-Internals-Git-Objects - [工作流 / recommended / Workflow tutorial] Canary 发布工作流: https://www.gitorg.xyz/zh/workflows/canary-release-workflow Summary: 通过小流量金丝雀发布逐步验证线上行为,在全量放量前提前暴露风险并降低事故半径。 Modified: 2026-05-24T11:46:17.293Z Citation: 适合作为团队流程、操作顺序和场景决策的引用来源。 | Sources: https://martinfowler.com/bliki/CanaryRelease.html, https://sre.google/workbook/canarying-releases/, https://git-scm.com/docs/git-tag - [恢复与排障 / extended / Troubleshooting guide] cherry-pick 冲突或出错后怎么恢复: https://www.gitorg.xyz/zh/recovery/recover-after-cherry-pick Summary: cherry-pick 遇到冲突、中止或结果不对时的完整恢复流程,包括 --abort、--continue、--skip 以及 cherry-pick 完成后的补救方法。 Modified: 2026-05-24T11:46:17.289Z Citation: 适合作为误操作恢复、排障步骤和风险控制的引用来源。 | Sources: https://git-scm.com/docs/git-cherry-pick, https://git-scm.com/book/en/v2/Git-Tools-Rewriting-History - [恢复与排障 / extended / Troubleshooting guide] cherry-pick 挑错提交后的恢复: https://www.gitorg.xyz/zh/recovery/recover-after-wrong-cherry-pick Summary: 当 cherry-pick 了错误提交或错误顺序后,根据是否已共享分支历史,选择 reset、revert 或重建补丁链恢复正确状态。 Modified: 2026-05-24T11:46:17.289Z Citation: 适合作为误操作恢复、排障步骤和风险控制的引用来源。 | Sources: https://git-scm.com/docs/git-cherry-pick, https://git-scm.com/docs/git-reset, https://git-scm.com/docs/git-revert - [工作流 / extended / Workflow tutorial] CI/CD 中的 Git 优化: https://www.gitorg.xyz/zh/workflows/ci-optimization-with-git Summary: CI/CD 中的 Git 优化策略:浅克隆、缓存、partial clone、只拉变更,以及 GitHub Actions / GitLab CI 中的具体配置。 Modified: 2026-05-24T11:46:17.293Z Citation: 适合作为团队流程、操作顺序和场景决策的引用来源。 | Sources: https://git-scm.com/docs/git-clone, https://github.blog/2020-12-21-get-up-to-speed-with-partial-clone-and-shallow-clone/ - [工作流 / recommended / Workflow tutorial] Code Freeze 与 Release Candidate 工作流: https://www.gitorg.xyz/zh/workflows/code-freeze-and-release-candidate-workflow Summary: 在发布前通过代码冻结与 RC 候选流程收敛变更范围,让问题暴露在发布前而不是发布后。 Modified: 2026-05-24T11:46:17.293Z Citation: 适合作为团队流程、操作顺序和场景决策的引用来源。 | Sources: https://git-scm.com/docs/git-branch, https://git-scm.com/docs/git-tag, https://git-scm.com/docs/git-revert, https://git-scm.com/docs/git-cherry-pick - [恢复与排障 / extended / Troubleshooting guide] detached HEAD 上提交了怎么接回分支: https://www.gitorg.xyz/zh/recovery/fix-detached-head-accidentally-committed Summary: 在 detached HEAD 状态下做了提交后,如何正确接回分支。包括创建新分支、合并到已有分支、预防措施。 Modified: 2026-05-24T11:46:17.289Z Citation: 适合作为误操作恢复、排障步骤和风险控制的引用来源。 | Sources: https://git-scm.com/docs/git-switch, https://git-scm.com/docs/git-checkout, https://git-scm.com/book/en/v2/Git-Branching-Advanced-Branching - [恢复与排障 / core / Troubleshooting guide] detached HEAD 状态下如何自救: https://www.gitorg.xyz/zh/recovery/detached-head-rescue Summary: detached HEAD 本身不是错误,真正的风险是你在这个状态下产生了值得保留的提交却没有立刻接住它们。 Modified: 2026-05-24T11:46:17.289Z Citation: 适合作为误操作恢复、排障步骤和风险控制的引用来源。 | Sources: https://git-scm.com/docs/git-switch, https://git-scm.com/docs/git-checkout, https://git-scm.com/docs/git-reflog - [概念 / extended / Concept guide] Detached HEAD 状态详解: https://www.gitorg.xyz/zh/docs/concepts/detached-head Summary: 解释什么是 detached HEAD、为什么会进入该状态,以及如何安全地退出 detached HEAD 并保留工作成果。 Modified: 2026-05-24T11:46:17.285Z Citation: 适合作为 Git 教学材料和学习路线的引用来源。 | Sources: https://git-scm.com/docs/git-switch, https://git-scm.com/book/en/v2/Git-Branching-Branches-in-a-Nutshell - [工作流 / recommended / Workflow tutorial] Feature Flag 渐进发布工作流: https://www.gitorg.xyz/zh/workflows/feature-flag-rollout-workflow Summary: 把代码合并与功能放量解耦,利用 feature flag 分阶段上线与回滚,降低大功能一次性发布风险。 Modified: 2026-05-24T11:46:17.293Z Citation: 适合作为团队流程、操作顺序和场景决策的引用来源。 | Sources: https://martinfowler.com/articles/feature-toggles.html, https://git-scm.com/docs/git-revert, https://git-scm.com/book/en/v2/Git-Branching-Branching-Workflows - [工作流 / core / Workflow tutorial] fetch 与 pull 的区别: https://www.gitorg.xyz/zh/workflows/fetch-vs-pull Summary: 解释为什么先 fetch 再决定 merge 或 rebase,往往比直接 pull 更可控。 Modified: 2026-05-24T11:46:17.293Z Citation: 适合作为团队流程、操作顺序和场景决策的引用来源。 | Sources: https://git-scm.com/docs/git-pull.html, https://git-scm.com/docs/git-fetch.html - [恢复与排障 / recommended / Troubleshooting guide] force push 之后怎么判断影响范围: https://www.gitorg.xyz/zh/recovery/assess-force-push-impact Summary: force push 之后,真正关键的不是立刻再推一次,而是先判断哪些引用被覆盖、哪些同事可能已基于旧历史继续工作,以及恢复窗口还有多大。 Modified: 2026-05-24T11:46:17.289Z Citation: 适合作为误操作恢复、排障步骤和风险控制的引用来源。 | Sources: https://git-scm.com/docs/git-push, https://git-scm.com/docs/git-reflog, https://git-scm.com/book/en/v2/Git-Tools-Rewriting-History - [工作流 / extended / Workflow tutorial] Fork 与上游同步教程: https://www.gitorg.xyz/zh/workflows/fork-upstream-sync Summary: 在 fork 模式协作中维持 origin 与 upstream 的清晰边界,稳定同步上游更新,并把自己的改动安全推回个人 fork。 Modified: 2026-05-24T11:46:17.293Z Citation: 适合作为团队流程、操作顺序和场景决策的引用来源。 | Sources: https://git-scm.com/book/en/v2/Git-Basics-Working-with-Remotes, https://git-scm.com/docs/git-fetch, https://git-scm.com/docs/git-remote - [GitHub 专题 / extended / Platform tutorial] Fork 与开源贡献教程: https://www.gitorg.xyz/zh/github/forks-and-open-source-contribution Summary: 把 fork、upstream、issue、贡献规范和 Pull Request 贡献节奏串成一条更真实的开源协作路径。 Modified: 2026-05-24T11:46:17.285Z Citation: 适合作为 Git 教学材料和学习路线的引用来源。 | Sources: https://docs.github.com/en/get-started/exploring-projects-on-github/contributing-to-open-source, https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/working-with-forks - [Git 命令 / core / Reference guide] git add 教程: https://www.gitorg.xyz/zh/commands/git-add Summary: 说明 git add 如何把工作区改动加入暂存区、如何用 patch 精细暂存,以及怎样避免把不相关改动混进同一次提交。 Modified: 2026-05-24T11:46:17.281Z Citation: 适合作为命令语法、风险边界和常见用法的引用来源。 | Sources: https://git-scm.com/docs/git-add, https://git-scm.com/book/en/v2/Git-Basics-Recording-Changes-to-the-Repository - [概念 / extended / Concept guide] Git Attributes 详解: https://www.gitorg.xyz/zh/docs/concepts/git-attributes Summary: 解释 .gitattributes 文件的用途、语法和常见应用场景,包括行尾符、合并策略、差异比较、语言识别和大文件处理。 Modified: 2026-05-24T11:46:17.285Z Citation: 适合作为 Git 教学材料和学习路线的引用来源。 | Sources: https://git-scm.com/docs/gitattributes, https://git-scm.com/book/en/v2/Customizing-Git-Git-Attributes - [Git 命令 / recommended / Reference guide] git bisect: https://www.gitorg.xyz/zh/commands/git-bisect Summary: 通过二分法定位引入 bug 的提交,是排查回归问题时最有价值的高级命令之一。 Modified: 2026-05-24T11:46:17.281Z Citation: 适合作为命令语法、风险边界和常见用法的引用来源。 | Sources: https://git-scm.com/docs/git-bisect, https://git-scm.com/book/en/v2/Git-Tools-Debugging-with-Git - [Git 命令 / recommended / Reference guide] git blame: https://www.gitorg.xyz/zh/commands/git-blame Summary: 定位某一行代码最后由哪个提交引入或修改,适合排查行为来源和上下文。 Modified: 2026-05-24T11:46:17.281Z Citation: 适合作为命令语法、风险边界和常见用法的引用来源。 | Sources: https://git-scm.com/docs/git-blame, https://git-scm.com/book/en/v2/Git-Tools-Debugging-with-Git - [Git 命令 / core / Reference guide] git branch 教程: https://www.gitorg.xyz/zh/commands/git-branch Summary: 系统说明 git branch 如何查看、创建、重命名和删除分支,以及它与远端跟踪分支的关系。 Modified: 2026-05-24T11:46:17.281Z Citation: 适合作为命令语法、风险边界和常见用法的引用来源。 | Sources: https://git-scm.com/docs/git-branch, https://git-scm.com/book/en/v2/Git-Branching-Branches-in-a-Nutshell, https://git-scm.com/book/en/v2/Git-Branching-Remote-Branches - [Git 命令 / recommended / Reference guide] git checkout 教程: https://www.gitorg.xyz/zh/commands/git-checkout Summary: 说明 git checkout 作为旧式多用途命令的两大职责,以及它与 switch、restore 的现代分工。 Modified: 2026-05-24T11:46:17.281Z Citation: 适合作为命令语法、风险边界和常见用法的引用来源。 | Sources: https://git-scm.com/docs/git-checkout, https://git-scm.com/book/en/v2/Git-Branching-Basic-Branching-and-Merging, https://git-scm.com/book/en/v2/Git-Basics-Undoing-Things - [Git 命令 / core / Reference guide] git cherry-pick 教程: https://www.gitorg.xyz/zh/commands/git-cherry-pick Summary: 解释如何把某个提交的改动拣选到当前分支,以及 cherry-pick 的典型适用边界。 Modified: 2026-05-24T11:46:17.281Z Citation: 适合作为命令语法、风险边界和常见用法的引用来源。 | Sources: https://git-scm.com/docs/git-cherry-pick.html, https://git-scm.com/book/en/v2/Git-Tools-Rewriting-History.html - [Git 命令 / recommended / Reference guide] git clean 教程: https://www.gitorg.xyz/zh/commands/git-clean Summary: 解释 git clean 如何删除未跟踪文件和目录,以及为什么 dry-run 和 force 标志在这里非常重要。 Modified: 2026-05-24T11:46:17.281Z Citation: 适合作为命令语法、风险边界和常见用法的引用来源。 | Sources: https://git-scm.com/docs/git-clean, https://git-scm.com/book/en/v2/Git-Tools-Stashing-and-Cleaning - [Git 命令 / core / Reference guide] git clone 教程: https://www.gitorg.xyz/zh/commands/git-clone Summary: 说明 git clone 如何复制仓库、默认远端 origin 的作用,以及克隆后本地分支与远端分支的基本关系。 Modified: 2026-05-24T11:46:17.281Z Citation: 适合作为命令语法、风险边界和常见用法的引用来源。 | Sources: https://git-scm.com/docs/git-clone, https://git-scm.com/book/en/v2/Git-Basics-Getting-a-Git-Repository - [Git 命令 / core / Reference guide] git commit 教程: https://www.gitorg.xyz/zh/commands/git-commit Summary: 解释 git commit 如何生成新的历史节点、怎样写出更有价值的提交信息,以及 amend 适合和不适合的边界。 Modified: 2026-05-24T11:46:17.281Z Citation: 适合作为命令语法、风险边界和常见用法的引用来源。 | Sources: https://git-scm.com/docs/git-commit, https://git-scm.com/book/en/v2/Git-Basics-Recording-Changes-to-the-Repository - [Git 命令 / recommended / Reference guide] git diff 教程: https://www.gitorg.xyz/zh/commands/git-diff Summary: 讲清 git diff 如何比较工作区、暂存区和提交状态,如何正确选择比较范围,以及怎样避免看错层级。 Modified: 2026-05-24T11:46:17.281Z Citation: 适合作为命令语法、风险边界和常见用法的引用来源。 | Sources: https://git-scm.com/docs/git-diff, https://git-scm.com/book/en/v2/Git-Basics-Recording-Changes-to-the-Repository - [Git 命令 / core / Reference guide] git fetch 教程: https://www.gitorg.xyz/zh/commands/git-fetch Summary: 解释 git fetch 如何更新远端引用、为何它比 pull 更可控,以及它在日常同步中的最佳位置。 Modified: 2026-05-24T11:46:17.281Z Citation: 适合作为命令语法、风险边界和常见用法的引用来源。 | Sources: https://git-scm.com/docs/git-fetch, https://git-scm.com/book/en/v2/Git-Branching-Remote-Branches - [概念 / extended / Concept guide] Git Hooks 完全指南: https://www.gitorg.xyz/zh/docs/concepts/git-hooks Summary: 详细解释 Git Hooks 的工作机制、客户端与服务端钩子、常见应用场景,以及如何使用 Husky 等工具管理 Hooks。 Modified: 2026-05-24T11:46:17.285Z Citation: 适合作为 Git 教学材料和学习路线的引用来源。 | Sources: https://git-scm.com/docs/githooks, https://git-scm.com/book/en/v2/Customizing-Git-Git-Hooks - [Git 命令 / core / Reference guide] git init 教程: https://www.gitorg.xyz/zh/commands/git-init Summary: 解释 git init 如何初始化仓库、默认分支如何产生,以及它在新项目和已有目录中的常见用法。 Modified: 2026-05-24T11:46:17.281Z Citation: 适合作为命令语法、风险边界和常见用法的引用来源。 | Sources: https://git-scm.com/docs/git-init, https://git-scm.com/book/en/v2/Git-Basics-Getting-a-Git-Repository - [概念 / extended / Concept guide] Git LFS 大文件存储: https://www.gitorg.xyz/zh/docs/concepts/git-lfs Summary: 解释 Git LFS 的工作原理、安装配置、追踪文件类型、迁移已有大文件,以及 LFS 的常见问题和最佳实践。 Modified: 2026-05-24T11:46:17.285Z Citation: 适合作为 Git 教学材料和学习路线的引用来源。 | Sources: https://git-lfs.com/, https://github.com/git-lfs/git-lfs/wiki/Tutorial, https://git-scm.com/book/en/v2/Git-Tools-Git-LFS - [Git 命令 / core / Reference guide] git log 教程: https://www.gitorg.xyz/zh/commands/git-log Summary: 说明 git log 如何查看提交历史、分支图结构、作者和范围过滤,并把它真正用到评审、同步和恢复判断中。 Modified: 2026-05-24T11:46:17.285Z Citation: 适合作为命令语法、风险边界和常见用法的引用来源。 | Sources: https://git-scm.com/docs/git-log, https://git-scm.com/book/en/v2/Git-Basics-Viewing-the-Commit-History - [Git 命令 / core / Reference guide] git merge 教程: https://www.gitorg.xyz/zh/commands/git-merge Summary: 解释 git merge 的核心作用、fast-forward 与 merge commit 的区别,以及冲突处理策略。 Modified: 2026-05-24T11:46:17.285Z Citation: 适合作为命令语法、风险边界和常见用法的引用来源。 | Sources: https://git-scm.com/docs/git-merge.html, https://git-scm.com/book/en/v2/Git-Branching-Basic-Branching-and-Merging.html - [概念 / extended / Concept guide] Git Merge 策略详解: https://www.gitorg.xyz/zh/docs/concepts/merge-strategies Summary: 系统介绍 Git 的合并策略——recursive、ort、octopus、ours、subtree——它们分别解决什么问题,以及如何选择。 Modified: 2026-05-24T11:46:17.285Z Citation: 适合作为 Git 教学材料和学习路线的引用来源。 | Sources: https://git-scm.com/docs/merge-strategies, https://git-scm.com/docs/git-merge, https://git-scm.com/book/en/v2/Git-Branching-Basic-Branching-and-Merging - [Git 命令 / extended / Reference guide] git mv: https://www.gitorg.xyz/zh/commands/git-mv Summary: 用于重命名或移动已跟踪文件,帮助你把文件系统变化和暂存区状态一次保持一致。 Modified: 2026-05-24T11:46:17.285Z Citation: 适合作为命令语法、风险边界和常见用法的引用来源。 | Sources: https://git-scm.com/docs/git-mv, https://git-scm.com/book/en/v2/Git-Basics-Recording-Changes-to-the-Repository - [Git 原理 / recommended / Technical explainer] Git Packfiles 与对象存储: https://www.gitorg.xyz/zh/internals/packfiles-and-storage Summary: 理解 Git 如何通过 packfiles、压缩和对象复用来高效存储与传输历史,而不是简单复制整份仓库。 Modified: 2026-05-24T11:46:17.289Z Citation: 适合作为 Git 心智模型、对象模型和底层机制的引用来源。 | Sources: https://git-scm.com/book/en/v2/Git-Internals-Packfiles, https://git-scm.com/book/en/v2/Git-Internals-Git-Objects - [Git 命令 / core / Reference guide] git pull 教程: https://www.gitorg.xyz/zh/commands/git-pull Summary: 解释 git pull 是 fetch 加整合的组合动作,什么时候 pull 很方便,什么时候 fetch-first 更稳,以及 rebase / ff-only 会怎样改变结果。 Modified: 2026-05-24T11:46:17.285Z Citation: 适合作为命令语法、风险边界和常见用法的引用来源。 | Sources: https://git-scm.com/docs/git-pull, https://git-scm.com/book/en/v2/Git-Branching-Remote-Branches - [Git 命令 / core / Reference guide] git push 教程: https://www.gitorg.xyz/zh/commands/git-push Summary: 说明 git push 如何发布本地分支、建立上游跟踪关系,以及怎样判断一次 push 是安全发布还是高风险改写。 Modified: 2026-05-24T11:46:17.285Z Citation: 适合作为命令语法、风险边界和常见用法的引用来源。 | Sources: https://git-scm.com/docs/git-push, https://git-scm.com/book/en/v2/Git-Branching-Remote-Branches - [Git 命令 / core / Reference guide] git rebase 教程: https://www.gitorg.xyz/zh/commands/git-rebase Summary: 解释 git rebase 的核心模型、推荐流程、风险边界和恢复办法。 Modified: 2026-05-24T11:46:17.285Z Citation: 适合作为命令语法、风险边界和常见用法的引用来源。 | Sources: https://git-scm.com/docs/git-rebase.html, https://git-scm.com/book/en/v2/Git-Branching-Rebasing.html, https://git-scm.com/docs/git-pull.html - [Git 命令 / core / Reference guide] git reflog: https://www.gitorg.xyz/zh/commands/git-reflog Summary: 查看引用移动历史,是 reset、rebase、误删分支等恢复场景里最常用的自救命令之一。 Modified: 2026-05-24T11:46:17.285Z Citation: 适合作为命令语法、风险边界和常见用法的引用来源。 | Sources: https://git-scm.com/docs/git-reflog, https://git-scm.com/book/en/v2/Git-Internals-Git-References - [Git 命令 / recommended / Reference guide] git remote 教程: https://www.gitorg.xyz/zh/commands/git-remote Summary: 讲清 git remote 如何查看、添加、修改和删除远端仓库定义,以及 origin 在协作中的典型角色。 Modified: 2026-05-24T11:46:17.285Z Citation: 适合作为命令语法、风险边界和常见用法的引用来源。 | Sources: https://git-scm.com/docs/git-remote, https://git-scm.com/book/en/v2/Git-Branching-Remote-Branches - [Git 命令 / core / Reference guide] git reset 教程: https://www.gitorg.xyz/zh/commands/git-reset Summary: 解释 git reset 如何移动 HEAD、分支和暂存区,并区分 --soft、--mixed、--hard 的影响范围。 Modified: 2026-05-24T11:46:17.285Z Citation: 适合作为命令语法、风险边界和常见用法的引用来源。 | Sources: https://git-scm.com/docs/git-reset.html, https://git-scm.com/book/en/v2/Git-Tools-Reset-Demystified.html - [Git 命令 / core / Reference guide] git restore 教程: https://www.gitorg.xyz/zh/commands/git-restore Summary: 说明 git restore 如何恢复工作区和暂存区中的文件状态,以及它和 reset、checkout 的边界。 Modified: 2026-05-24T11:46:17.285Z Citation: 适合作为命令语法、风险边界和常见用法的引用来源。 | Sources: https://git-scm.com/docs/git-restore, https://git-scm.com/book/en/v2/Git-Basics-Undoing-Things - [Git 命令 / core / Reference guide] git revert 教程: https://www.gitorg.xyz/zh/commands/git-revert Summary: 讲清 git revert 为什么适合撤销已共享提交,以及它和 reset 在历史表达上的关键区别。 Modified: 2026-05-24T11:46:17.285Z Citation: 适合作为命令语法、风险边界和常见用法的引用来源。 | Sources: https://git-scm.com/docs/git-revert, https://git-scm.com/book/en/v2/Git-Basics-Undoing-Things - [Git 命令 / extended / Reference guide] git rm: https://www.gitorg.xyz/zh/commands/git-rm Summary: 删除已跟踪文件并同步到暂存区,理解它有助于区分文件系统删除和 Git 记录删除。 Modified: 2026-05-24T11:46:17.285Z Citation: 适合作为命令语法、风险边界和常见用法的引用来源。 | Sources: https://git-scm.com/docs/git-rm, https://git-scm.com/book/en/v2/Git-Basics-Recording-Changes-to-the-Repository - [Git 命令 / recommended / Reference guide] git show: https://www.gitorg.xyz/zh/commands/git-show Summary: 查看某个提交、标签或对象的详细内容,是把历史节点和对象读清楚的高频命令。 Modified: 2026-05-24T11:46:17.285Z Citation: 适合作为命令语法、风险边界和常见用法的引用来源。 | Sources: https://git-scm.com/docs/git-show, https://git-scm.com/book/en/v2/Git-Basics-Viewing-the-Commit-History - [Git 命令 / core / Reference guide] git stash 教程: https://www.gitorg.xyz/zh/commands/git-stash Summary: 解释如何用 git stash 临时保存未提交改动,并在后续恢复、查看和清理 stash 条目。 Modified: 2026-05-24T11:46:17.285Z Citation: 适合作为命令语法、风险边界和常见用法的引用来源。 | Sources: https://git-scm.com/docs/git-stash.html, https://git-scm.com/book/en/v2/Git-Tools-Stashing-and-Cleaning.html - [概念 / extended / Concept guide] Git Stash 概念:临时保存工作上下文: https://www.gitorg.xyz/zh/docs/concepts/stash Summary: 系统解释 git stash 的概念——它是什么、什么时候用、有什么限制,以及如何安全地管理临时保存的工作上下文。 Modified: 2026-05-24T11:46:17.285Z Citation: 适合作为 Git 教学材料和学习路线的引用来源。 | Sources: https://git-scm.com/docs/git-stash, https://git-scm.com/book/en/v2/Git-Tools-Stashing-and-Cleaning - [Git 命令 / core / Reference guide] git status 教程: https://www.gitorg.xyz/zh/commands/git-status Summary: 讲清 git status 如何查看工作区、暂存区和分支状态,以及它为什么是日常最应该频繁使用的命令之一。 Modified: 2026-05-24T11:46:17.285Z Citation: 适合作为命令语法、风险边界和常见用法的引用来源。 | Sources: https://git-scm.com/docs/git-status, https://git-scm.com/book/en/v2/Git-Basics-Recording-Changes-to-the-Repository - [概念 / extended / Concept guide] Git Subtree 使用指南: https://www.gitorg.xyz/zh/docs/concepts/git-subtree Summary: 解释 git subtree 的概念、与 submodule 的对比、添加和更新子树的操作,以及子树合并和拆分的高级用法。 Modified: 2026-05-24T11:46:17.285Z Citation: 适合作为 Git 教学材料和学习路线的引用来源。 | Sources: https://git-scm.com/docs/git-subtree, https://github.com/git/git/blob/master/contrib/subtree/git-subtree.txt - [Git 命令 / core / Reference guide] git switch 教程: https://www.gitorg.xyz/zh/commands/git-switch Summary: 介绍 git switch 如何负责切换和创建分支,以及它相对 checkout 更清晰的职责边界。 Modified: 2026-05-24T11:46:17.285Z Citation: 适合作为命令语法、风险边界和常见用法的引用来源。 | Sources: https://git-scm.com/docs/git-switch, https://git-scm.com/book/en/v2/Git-Branching-Basic-Branching-and-Merging - [Git 命令 / recommended / Reference guide] git tag 教程: https://www.gitorg.xyz/zh/commands/git-tag Summary: 介绍 git tag 如何标记发布点、轻量标签和附注标签的区别,以及标签推送的基本方式。 Modified: 2026-05-24T11:46:17.285Z Citation: 适合作为命令语法、风险边界和常见用法的引用来源。 | Sources: https://git-scm.com/docs/git-tag, https://git-scm.com/book/en/v2/Git-Basics-Tagging - [概念 / extended / Concept guide] Git Worktree 概念:多工作目录并行开发: https://www.gitorg.xyz/zh/docs/concepts/worktree Summary: 系统解释 Git worktree 的概念——如何同时检出多个分支到不同目录,以及它解决的问题和适用场景。 Modified: 2026-05-24T11:46:17.285Z Citation: 适合作为 Git 教学材料和学习路线的引用来源。 | Sources: https://git-scm.com/docs/git-worktree, https://git-scm.com/book/en/v2/Git-Tools-Working-with-Worktrees - [概念 / extended / Concept guide] Git 三层模型:工作区、暂存区与对象库: https://www.gitorg.xyz/zh/docs/concepts/three-layers Summary: 解释 Git 最核心的三层架构——工作区(Working Tree)、暂存区(Index)与对象库(Objects Database)——以及它们如何协同工作。 Modified: 2026-05-24T11:46:17.285Z Citation: 适合作为 Git 教学材料和学习路线的引用来源。 | Sources: https://git-scm.com/book/en/v2/Getting-Started-What-is-Git%3F, https://git-scm.com/book/en/v2/Git-Basics-Recording-Changes-to-the-Repository, https://git-scm.com/book/en/v2/Git-Internals-Git-Objects - [Git 原理 / core / Technical explainer] Git 中的引用与 HEAD: https://www.gitorg.xyz/zh/internals/refs-and-head Summary: 把分支、标签、远端跟踪引用和 HEAD 放到同一个模型里,理解 Git 如何用名字指向提交。 Modified: 2026-05-24T11:46:17.289Z Citation: 适合作为 Git 心智模型、对象模型和底层机制的引用来源。 | Sources: https://git-scm.com/book/en/v2/Git-Internals-Git-References - [最佳实践 / extended / Best practice guide] Git 别名与效率提升: https://www.gitorg.xyz/zh/best-practices/git-aliases Summary: 高效 Git 别名配置、常用别名清单、Shell 别名、团队共享别名配置与最佳实践。 Modified: 2026-05-24T11:46:17.281Z Citation: 适合作为 Git 教学材料和学习路线的引用来源。 | Sources: https://git-scm.com/book/en/v2/Git-Basics-Git-Aliases, https://git-scm.com/docs/git-config - [概念 / core / Concept guide] Git 历史说明: https://www.gitorg.xyz/zh/history Summary: 系统解释 Git 如何记录历史、为什么提交历史是一个有向图,以及这对协作、恢复和变更审查意味着什么。 Modified: 2026-05-24T11:46:17.285Z Citation: 适合作为 Git 教学材料和学习路线的引用来源。 | Sources: https://git-scm.com/book/en/v2/Git-Basics-Viewing-the-Commit-History, https://git-scm.com/book/en/v2/Git-Internals-Git-Objects, https://git-scm.com/book/en/v2/Git-Internals-Git-References - [最佳实践 / extended / Best practice guide] Git 安全实践: https://www.gitorg.xyz/zh/best-practices/security-with-git Summary: 敏感信息泄露处理、密钥管理、.env 安全、git-secrets、GPG 签名提交、SSH 密钥管理等安全实践。 Modified: 2026-05-24T11:46:17.281Z Citation: 适合作为 Git 教学材料和学习路线的引用来源。 | Sources: https://git-scm.com/book/en/v2/Git-Tools-Signing-Your-Work, https://github.com/awslabs/git-secrets, https://github.com/rtyley/bfg-repo-cleaner - [Git 原理 / core / Technical explainer] Git 对象数据库: https://www.gitorg.xyz/zh/internals/object-database Summary: 理解 blob、tree、commit、tag 四类对象,以及 Git 为什么说自己是内容寻址的对象数据库。 Modified: 2026-05-24T11:46:17.289Z Citation: 适合作为 Git 心智模型、对象模型和底层机制的引用来源。 | Sources: https://git-scm.com/book/en/v2/Git-Internals-Git-Objects - [学习路径 / core / Course module] Git 快速上手专题: https://www.gitorg.xyz/zh/learning-path Summary: 把 Git 初学者最需要建立的最小闭环拆成一个可分步学习的专题,包括环境准备、暂存与提交、远端同步和第一个特性分支。 Modified: 2026-05-24T11:46:17.289Z Citation: 适合作为 Git 教学材料和学习路线的引用来源。 | Sources: https://git-scm.com/book/en/v2/Git-Branching-Summary, https://git-scm.com/docs/git-clone, https://git-scm.com/docs/git-commit, https://git-scm.com/docs/git-fetch, https://git-scm.com/docs/git-push - [托管方案 / extended / Comparison guide] Git 托管平台对比:GitHub vs GitLab vs Bitbucket: https://www.gitorg.xyz/zh/hosting/platform-comparison Summary: 系统对比 GitHub、GitLab、Bitbucket 三大 Git 托管平台的功能、定价、CI/CD 集成和协作模式,帮助你选择合适的平台。 Modified: 2026-05-24T11:46:17.289Z Citation: 适合作为 Git 教学材料和学习路线的引用来源。 | Sources: https://docs.github.com/en, https://docs.gitlab.com/, https://bitbucket.org/product/guides - [Git 原理 / core / Technical explainer] Git 提交图与历史表达: https://www.gitorg.xyz/zh/internals/commit-graph Summary: 理解为什么 Git 历史本质上是提交图,而不是简单时间线,以及 merge、rebase 如何重新表达这张图。 Modified: 2026-05-24T11:46:17.289Z Citation: 适合作为 Git 心智模型、对象模型和底层机制的引用来源。 | Sources: https://git-scm.com/book/en/v2/Git-Basics-Viewing-the-Commit-History, https://git-scm.com/book/en/v2/Git-Branching-Basic-Branching-and-Merging, https://git-scm.com/book/en/v2/Git-Branching-Rebasing - [概念 / extended / Concept guide] Git 浅克隆与浅操作: https://www.gitorg.xyz/zh/docs/concepts/git-shallow Summary: 解释 git clone --depth、浅 fetch、shallow exclude 等浅操作的概念、使用场景和局限性。 Modified: 2026-05-24T11:46:17.285Z Citation: 适合作为 Git 教学材料和学习路线的引用来源。 | Sources: https://git-scm.com/docs/git-clone, https://git-scm.com/docs/git-fetch, https://git-scm.com/book/en/v2/Git-Tools-Shallow-Cloning - [Git 命令 / extended / Reference guide] git-am 教程: https://www.gitorg.xyz/zh/commands/git-am Summary: 把邮件格式补丁序列应用为真实提交,适合 patch-by-email 协作;重点在冲突处理中保持提交序列完整性。 Modified: 2026-05-24T11:46:17.281Z Citation: 适合作为命令语法、风险边界和常见用法的引用来源。 | Sources: https://git-scm.com/docs/git-am - [Git 命令 / extended / Reference guide] git-apply 教程: https://www.gitorg.xyz/zh/commands/git-apply Summary: 解释如何用 git-apply 把补丁内容应用到工作区或暂存区。 Modified: 2026-05-24T11:46:17.281Z Citation: 适合作为命令语法、风险边界和常见用法的引用来源。 | Sources: https://git-scm.com/docs/git-apply - [Git 命令 / extended / Reference guide] git-archive 教程: https://www.gitorg.xyz/zh/commands/git-archive Summary: 解释如何用 git-archive 从某个提交或树对象导出归档包。 Modified: 2026-05-24T11:46:17.281Z Citation: 适合作为命令语法、风险边界和常见用法的引用来源。 | Sources: https://git-scm.com/docs/git-archive - [Git 命令 / extended / Reference guide] git-bundle 教程: https://www.gitorg.xyz/zh/commands/git-bundle Summary: 把 Git 历史打包成单文件用于离线传输或受限网络同步,适合“不能直接 fetch/push”的场景。 Modified: 2026-05-24T11:46:17.281Z Citation: 适合作为命令语法、风险边界和常见用法的引用来源。 | Sources: https://git-scm.com/docs/git-bundle - [Git 命令 / extended / Reference guide] git-cat-file 教程: https://www.gitorg.xyz/zh/commands/git-cat-file Summary: 解释如何用 git-cat-file 直接查看 Git 对象的类型和内容。 Modified: 2026-05-24T11:46:17.281Z Citation: 适合作为命令语法、风险边界和常见用法的引用来源。 | Sources: https://git-scm.com/docs/git-cat-file - [Git 命令 / extended / Reference guide] git-cherry 教程: https://www.gitorg.xyz/zh/commands/git-cherry Summary: 解释如何用 git-cherry 判断哪些提交尚未被另一条历史吸收。 Modified: 2026-05-24T11:46:17.281Z Citation: 适合作为命令语法、风险边界和常见用法的引用来源。 | Sources: https://git-scm.com/docs/git-cherry - [Git 命令 / extended / Reference guide] git-config 教程: https://www.gitorg.xyz/zh/commands/git-config Summary: 解释如何用 git-config 查看和修改 Git 配置。 Modified: 2026-05-24T11:46:17.281Z Citation: 适合作为命令语法、风险边界和常见用法的引用来源。 | Sources: https://git-scm.com/docs/git-config, https://git-scm.com/book/en/v2/Customizing-Git-Git-Configuration - [Git 命令 / extended / Reference guide] git-count-objects 教程: https://www.gitorg.xyz/zh/commands/git-count-objects Summary: 解释如何用 git-count-objects 统计松散对象和包文件的数量。 Modified: 2026-05-24T11:46:17.281Z Citation: 适合作为命令语法、风险边界和常见用法的引用来源。 | Sources: https://git-scm.com/docs/git-count-objects - [Git 命令 / extended / Reference guide] git-describe 教程: https://www.gitorg.xyz/zh/commands/git-describe Summary: 解释如何用 git-describe 用最近标签描述当前提交。 Modified: 2026-05-24T11:46:17.281Z Citation: 适合作为命令语法、风险边界和常见用法的引用来源。 | Sources: https://git-scm.com/docs/git-describe - [Git 命令 / extended / Reference guide] git-difftool 教程: https://www.gitorg.xyz/zh/commands/git-difftool Summary: 使用外部图形化工具查看差异,提升代码审查和冲突理解效率。 Modified: 2026-05-24T11:46:17.281Z Citation: 适合作为命令语法、风险边界和常见用法的引用来源。 | Sources: https://git-scm.com/docs/git-difftool - [Git 命令 / extended / Reference guide] git-format-patch 教程: https://www.gitorg.xyz/zh/commands/git-format-patch Summary: 解释如何用 git-format-patch 把提交导出成可发送的补丁文件。 Modified: 2026-05-24T11:46:17.281Z Citation: 适合作为命令语法、风险边界和常见用法的引用来源。 | Sources: https://git-scm.com/docs/git-format-patch, https://git-scm.com/book/en/v2/Distributed-Git-Contributing-to-a-Project - [Git 命令 / extended / Reference guide] git-fsck 教程: https://www.gitorg.xyz/zh/commands/git-fsck Summary: 解释如何用 git-fsck 检查对象库和引用的完整性。 Modified: 2026-05-24T11:46:17.281Z Citation: 适合作为命令语法、风险边界和常见用法的引用来源。 | Sources: https://git-scm.com/docs/git-fsck - [Git 命令 / extended / Reference guide] git-gc 教程: https://www.gitorg.xyz/zh/commands/git-gc Summary: 解释如何用 git-gc 执行垃圾回收和仓库整理。 Modified: 2026-05-24T11:46:17.281Z Citation: 适合作为命令语法、风险边界和常见用法的引用来源。 | Sources: https://git-scm.com/docs/git-gc - [Git 命令 / extended / Reference guide] git-grep 教程: https://www.gitorg.xyz/zh/commands/git-grep Summary: 解释如何用 git-grep 在仓库内容中搜索文本。 Modified: 2026-05-24T11:46:17.281Z Citation: 适合作为命令语法、风险边界和常见用法的引用来源。 | Sources: https://git-scm.com/docs/git-grep, https://git-scm.com/book/en/v2/Git-Tools-Searching - [Git 命令 / extended / Reference guide] git-hash-object 教程: https://www.gitorg.xyz/zh/commands/git-hash-object Summary: 计算文件或标准输入的 Git 对象 ID(SHA-1),帮助理解 Git 的内容寻址模型。 Modified: 2026-05-24T11:46:17.281Z Citation: 适合作为命令语法、风险边界和常见用法的引用来源。 | Sources: https://git-scm.com/docs/git-hash-object - [Git 命令 / extended / Reference guide] git-help 教程: https://www.gitorg.xyz/zh/commands/git-help Summary: 解释如何用 git-help 查阅命令帮助和手册页。 Modified: 2026-05-24T11:46:17.281Z Citation: 适合作为命令语法、风险边界和常见用法的引用来源。 | Sources: https://git-scm.com/docs/git-help - [Git 命令 / extended / Reference guide] git-interpret-trailers 教程: https://www.gitorg.xyz/zh/commands/git-interpret-trailers Summary: 解析、添加或规范化提交信息中的尾部字段(trailers),如 Co-authored-by、Signed-off-by。 Modified: 2026-05-24T11:46:17.281Z Citation: 适合作为命令语法、风险边界和常见用法的引用来源。 | Sources: https://git-scm.com/docs/git-interpret-trailers - [Git 命令 / extended / Reference guide] git-ls-files 教程: https://www.gitorg.xyz/zh/commands/git-ls-files Summary: 解释如何用 git-ls-files 列出索引和工作区里的受跟踪路径。 Modified: 2026-05-24T11:46:17.285Z Citation: 适合作为命令语法、风险边界和常见用法的引用来源。 | Sources: https://git-scm.com/docs/git-ls-files - [Git 命令 / extended / Reference guide] git-ls-tree 教程: https://www.gitorg.xyz/zh/commands/git-ls-tree Summary: 解释如何用 git-ls-tree 列出某个树对象中的目录和文件条目。 Modified: 2026-05-24T11:46:17.285Z Citation: 适合作为命令语法、风险边界和常见用法的引用来源。 | Sources: https://git-scm.com/docs/git-ls-tree - [Git 命令 / extended / Reference guide] git-merge-base 教程: https://www.gitorg.xyz/zh/commands/git-merge-base Summary: 解释如何用 git-merge-base 找出两个历史之间的最佳共同祖先。 Modified: 2026-05-24T11:46:17.285Z Citation: 适合作为命令语法、风险边界和常见用法的引用来源。 | Sources: https://git-scm.com/docs/git-merge-base, https://git-scm.com/book/en/v2/Git-Branching-Basic-Branching-and-Merging - [Git 命令 / extended / Reference guide] git-mergetool 教程: https://www.gitorg.xyz/zh/commands/git-mergetool Summary: 解释如何用 git-mergetool 调用外部工具辅助解决合并冲突。 Modified: 2026-05-24T11:46:17.285Z Citation: 适合作为命令语法、风险边界和常见用法的引用来源。 | Sources: https://git-scm.com/docs/git-mergetool - [Git 命令 / extended / Reference guide] git-notes 教程: https://www.gitorg.xyz/zh/commands/git-notes Summary: 在不改写提交对象的前提下给提交补充审计、复盘或评审注释,适合需要保留原始历史又要追加上下文的团队。 Modified: 2026-05-24T11:46:17.285Z Citation: 适合作为命令语法、风险边界和常见用法的引用来源。 | Sources: https://git-scm.com/docs/git-notes - [Git 命令 / extended / Reference guide] git-prune 教程: https://www.gitorg.xyz/zh/commands/git-prune Summary: 清理不可达的 Git 对象,配合 gc 和 reflog 管理仓库对象生命周期。 Modified: 2026-05-24T11:46:17.285Z Citation: 适合作为命令语法、风险边界和常见用法的引用来源。 | Sources: https://git-scm.com/docs/git-prune - [Git 命令 / extended / Reference guide] git-range-diff 教程: https://www.gitorg.xyz/zh/commands/git-range-diff Summary: 比较两组“补丁序列”而不是单点 diff,适合在 rebase 或重排提交后向 reviewer 解释“这次版本改动到底变了什么”。 Modified: 2026-05-24T11:46:17.285Z Citation: 适合作为命令语法、风险边界和常见用法的引用来源。 | Sources: https://git-scm.com/docs/git-range-diff - [Git 命令 / extended / Reference guide] git-read-tree 教程: https://www.gitorg.xyz/zh/commands/git-read-tree Summary: 解释如何用 git-read-tree 把树对象读入索引进行底层操作。 Modified: 2026-05-24T11:46:17.285Z Citation: 适合作为命令语法、风险边界和常见用法的引用来源。 | Sources: https://git-scm.com/docs/git-read-tree - [Git 命令 / extended / Reference guide] git-replace 教程: https://www.gitorg.xyz/zh/commands/git-replace Summary: 在不改写历史的情况下替换提交对象,用于拆分仓库或修正历史中的特定节点。 Modified: 2026-05-24T11:46:17.285Z Citation: 适合作为命令语法、风险边界和常见用法的引用来源。 | Sources: https://git-scm.com/docs/git-replace - [Git 命令 / extended / Reference guide] git-request-pull 教程: https://www.gitorg.xyz/zh/commands/git-request-pull Summary: 生成“从哪个基线到哪个分支”的拉取摘要,适合邮件流或传统维护者流程中做可审阅的变更交付说明。 Modified: 2026-05-24T11:46:17.285Z Citation: 适合作为命令语法、风险边界和常见用法的引用来源。 | Sources: https://git-scm.com/docs/git-request-pull, https://git-scm.com/book/en/v2/Distributed-Git-Maintaining-a-Project - [Git 命令 / extended / Reference guide] git-rerere 教程: https://www.gitorg.xyz/zh/commands/git-rerere Summary: 启用并重用冲突解决方案,减少重复解决相同冲突的工作量。 Modified: 2026-05-24T11:46:17.285Z Citation: 适合作为命令语法、风险边界和常见用法的引用来源。 | Sources: https://git-scm.com/docs/git-rerere - [Git 命令 / extended / Reference guide] git-rev-list 教程: https://www.gitorg.xyz/zh/commands/git-rev-list Summary: 解释如何用 git-rev-list 以脚本友好的方式枚举提交集合。 Modified: 2026-05-24T11:46:17.285Z Citation: 适合作为命令语法、风险边界和常见用法的引用来源。 | Sources: https://git-scm.com/docs/git-rev-list - [Git 命令 / extended / Reference guide] git-rev-parse 教程: https://www.gitorg.xyz/zh/commands/git-rev-parse Summary: 解释如何用 git-rev-parse 解析修订表达式和仓库路径信息。 Modified: 2026-05-24T11:46:17.285Z Citation: 适合作为命令语法、风险边界和常见用法的引用来源。 | Sources: https://git-scm.com/docs/git-rev-parse, https://git-scm.com/book/en/v2/Git-Tools-Revision-Selection - [Git 命令 / extended / Reference guide] git-send-email 教程: https://www.gitorg.xyz/zh/commands/git-send-email Summary: 将 `format-patch` 产出的补丁序列按邮件线程发送给维护者或邮件列表,适用于内核式补丁协作流程。 Modified: 2026-05-24T11:46:17.285Z Citation: 适合作为命令语法、风险边界和常见用法的引用来源。 | Sources: https://git-scm.com/docs/git-send-email, https://git-scm.com/book/en/v2/Distributed-Git-Contributing-to-a-Project - [Git 命令 / extended / Reference guide] git-shortlog 教程: https://www.gitorg.xyz/zh/commands/git-shortlog Summary: 解释如何用 git-shortlog 按作者和主题汇总提交历史。 Modified: 2026-05-24T11:46:17.285Z Citation: 适合作为命令语法、风险边界和常见用法的引用来源。 | Sources: https://git-scm.com/docs/git-shortlog, https://git-scm.com/book/en/v2/Distributed-Git-Maintaining-a-Project - [Git 命令 / extended / Reference guide] git-show-ref 教程: https://www.gitorg.xyz/zh/commands/git-show-ref Summary: 解释如何用 git-show-ref 列出仓库中的引用及其目标。 Modified: 2026-05-24T11:46:17.285Z Citation: 适合作为命令语法、风险边界和常见用法的引用来源。 | Sources: https://git-scm.com/docs/git-show-ref - [Git 命令 / extended / Reference guide] git-sparse-checkout 教程: https://www.gitorg.xyz/zh/commands/git-sparse-checkout Summary: 解释如何用 git-sparse-checkout 只检出仓库中的部分目录。 Modified: 2026-05-24T11:46:17.285Z Citation: 适合作为命令语法、风险边界和常见用法的引用来源。 | Sources: https://git-scm.com/docs/git-sparse-checkout - [Git 命令 / recommended / Reference guide] git-submodule 教程: https://www.gitorg.xyz/zh/commands/git-submodule Summary: 管理父仓库中的外部依赖仓库指针,重点是“子模块提交更新后要提交父仓库指针”这一协作边界。 Modified: 2026-05-24T11:46:17.285Z Citation: 适合作为命令语法、风险边界和常见用法的引用来源。 | Sources: https://git-scm.com/docs/git-submodule, https://git-scm.com/book/en/v2/Git-Tools-Submodules - [Git 命令 / extended / Reference guide] git-symbolic-ref 教程: https://www.gitorg.xyz/zh/commands/git-symbolic-ref Summary: 解释如何用 git-symbolic-ref 读取或修改符号引用如 HEAD。 Modified: 2026-05-24T11:46:17.285Z Citation: 适合作为命令语法、风险边界和常见用法的引用来源。 | Sources: https://git-scm.com/docs/git-symbolic-ref - [Git 命令 / extended / Reference guide] git-update-index 教程: https://www.gitorg.xyz/zh/commands/git-update-index Summary: 解释如何用 git-update-index 直接修改索引中的条目和属性。 Modified: 2026-05-24T11:46:17.285Z Citation: 适合作为命令语法、风险边界和常见用法的引用来源。 | Sources: https://git-scm.com/docs/git-update-index - [Git 命令 / extended / Reference guide] git-update-ref 教程: https://www.gitorg.xyz/zh/commands/git-update-ref Summary: 解释如何用 git-update-ref 以更底层的方式更新引用。 Modified: 2026-05-24T11:46:17.285Z Citation: 适合作为命令语法、风险边界和常见用法的引用来源。 | Sources: https://git-scm.com/docs/git-update-ref - [Git 命令 / extended / Reference guide] git-verify-pack 教程: https://www.gitorg.xyz/zh/commands/git-verify-pack Summary: 解释如何用 git-verify-pack 检查 pack 文件中的对象和偏移信息。 Modified: 2026-05-24T11:46:17.285Z Citation: 适合作为命令语法、风险边界和常见用法的引用来源。 | Sources: https://git-scm.com/docs/git-verify-pack - [Git 命令 / extended / Reference guide] git-verify-tag 教程: https://www.gitorg.xyz/zh/commands/git-verify-tag Summary: 解释如何用 git-verify-tag 验证带签名标签的真实性。 Modified: 2026-05-24T11:46:17.285Z Citation: 适合作为命令语法、风险边界和常见用法的引用来源。 | Sources: https://git-scm.com/docs/git-verify-tag - [Git 命令 / recommended / Reference guide] git-worktree 教程: https://www.gitorg.xyz/zh/commands/git-worktree Summary: 为同一仓库创建多个并行工作目录,避免频繁 stash/switch,提高多任务协作与紧急切换效率。 Modified: 2026-05-24T11:46:17.285Z Citation: 适合作为命令语法、风险边界和常见用法的引用来源。 | Sources: https://git-scm.com/docs/git-worktree - [工作流 / core / Workflow tutorial] Gitflow 工作流教程: https://www.gitorg.xyz/zh/workflows/gitflow-workflow Summary: 基于 Atlassian 对 Gitflow 的说明,梳理 main、develop、feature、release、hotfix 的职责,以及它在现代团队中的适用边界。 Modified: 2026-05-24T11:46:17.293Z Citation: 适合作为团队流程、操作顺序和场景决策的引用来源。 | Sources: https://www.atlassian.com/git/tutorials/comparing-workflows/gitflow-workflow, https://git-scm.com/docs/git-branch, https://git-scm.com/docs/git-merge, https://git-scm.com/docs/git-tag - [CI/CD 集成 / extended / Tutorial] GitHub Actions 与 Git 协同: https://www.gitorg.xyz/zh/ci-cd/github-actions-basics Summary: 系统介绍 GitHub Actions 如何与 Git 仓库协同工作,包括事件触发、工作流语法、CI/CD 集成和最佳实践。 Modified: 2026-05-24T11:46:17.281Z Citation: 适合作为 Git 教学材料和学习路线的引用来源。 | Sources: https://docs.github.com/en/actions, https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows - [GitHub 专题 / extended / Platform tutorial] GitHub Actions 与 GitHub Skills 入门: https://www.gitorg.xyz/zh/github/github-actions-and-skills Summary: 理解 GitHub Actions 的最小自动化模型,并用 GitHub Skills 建立更低成本的动手练习路径。 Modified: 2026-05-24T11:46:17.285Z Citation: 适合作为 Git 教学材料和学习路线的引用来源。 | Sources: https://docs.github.com/en/actions/get-started/quickstart, https://skills.github.com - [GitHub 专题 / recommended / Platform tutorial] GitHub CODEOWNERS 与评审归属: https://www.gitorg.xyz/zh/github/github-codeowners-and-review-ownership Summary: 通过 CODEOWNERS 建立文件级评审归属,减少关键模块无人负责或评审漂移的问题。 Modified: 2026-05-24T11:46:17.285Z Citation: 适合作为 Git 教学材料和学习路线的引用来源。 | Sources: https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-code-owners, https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/code-review/about-pull-request-reviews - [GitHub 专题 / recommended / Platform tutorial] GitHub Flow 基础教程: https://www.gitorg.xyz/zh/github/github-flow-basics Summary: 用 GitHub 官方的轻量协作模型理解 branch、pull request、review 与 merge 的最小闭环。 Modified: 2026-05-24T11:46:17.285Z Citation: 适合作为 Git 教学材料和学习路线的引用来源。 | Sources: https://docs.github.com/en/get-started/using-github/github-flow, https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/about-pull-requests - [GitHub 专题 / recommended / Platform tutorial] GitHub 分支保护与 Rulesets: https://www.gitorg.xyz/zh/github/github-branch-protection-and-rulesets Summary: 用 Branch protection 与 Rulesets 把分支策略从约定升级为平台强制,降低误推送和低质量合并风险。 Modified: 2026-05-24T11:46:17.285Z Citation: 适合作为 Git 教学材料和学习路线的引用来源。 | Sources: https://docs.github.com/en/repositories/configuring-branches-and-merges-in-your-repository/managing-protected-branches, https://docs.github.com/en/repositories/configuring-branches-and-merges-in-your-repository/managing-rulesets/about-rulesets - [CI/CD 集成 / extended / Tutorial] GitLab CI/CD 与 Git 协同: https://www.gitorg.xyz/zh/ci-cd/gitlab-ci-basics Summary: 系统介绍 GitLab CI/CD 如何与 Git 仓库深度集成,包括 .gitlab-ci.yml 配置、流水线触发策略和最佳实践。 Modified: 2026-05-24T11:46:17.281Z Citation: 适合作为 Git 教学材料和学习路线的引用来源。 | Sources: https://docs.gitlab.com/ee/ci/, https://docs.gitlab.com/ee/ci/yaml/ - [GitLab 专题 / recommended / Platform tutorial] GitLab CI/CD 与 Runners 入门: https://www.gitorg.xyz/zh/gitlab/gitlab-ci-and-runners Summary: 建立更扎实的 GitLab CI/CD、pipeline、job、runner 心智模型,并理解它们怎样参与 Merge Request 准入。 Modified: 2026-05-24T11:46:17.285Z Citation: 适合作为 Git 教学材料和学习路线的引用来源。 | Sources: https://docs.gitlab.com/ci/quick_start/, https://docs.gitlab.com/ci/runners/, https://docs.gitlab.com/ci/pipelines/merge_request_pipelines/ - [GitLab 专题 / recommended / Platform tutorial] GitLab Flow 与 Merge Request 教程: https://www.gitorg.xyz/zh/gitlab/gitlab-flow-and-merge-requests Summary: 理解 GitLab Flow、环境感知的分支协作,以及 Merge Request 为什么会成为 GitLab 交付模型的中心。 Modified: 2026-05-24T11:46:17.285Z Citation: 适合作为 Git 教学材料和学习路线的引用来源。 | Sources: https://docs.gitlab.com/topics/gitlab_flow/, https://docs.gitlab.com/user/project/merge_requests/ - [GitLab 专题 / extended / Platform tutorial] GitLab Fork 与贡献流程: https://www.gitorg.xyz/zh/gitlab/gitlab-forks-and-contributions Summary: 把 GitLab 上的 fork、贡献分支、Merge Request 和上游同步串成一条更真实的外部协作路径,并说明权限与 CI 边界。 Modified: 2026-05-24T11:46:17.285Z Citation: 适合作为 Git 教学材料和学习路线的引用来源。 | Sources: https://docs.gitlab.com/user/project/repository/forking_workflow/, https://docs.gitlab.com/user/project/merge_requests/ - [GitLab 专题 / extended / Platform tutorial] GitLab Groups、Projects 与权限模型: https://www.gitorg.xyz/zh/gitlab/gitlab-groups-projects-and-permissions Summary: 理解 GitLab 里 group、project、role 和权限继承的关系,避免团队协作一开始就把访问边界做乱。 Modified: 2026-05-24T11:46:17.289Z Citation: 适合作为 Git 教学材料和学习路线的引用来源。 | Sources: https://docs.gitlab.com/user/group/, https://docs.gitlab.com/user/project/, https://docs.gitlab.com/auth/user_permissions/ - [GitLab 专题 / extended / Platform tutorial] GitLab Issues、Boards 与 Milestones: https://www.gitorg.xyz/zh/gitlab/gitlab-issues-boards-and-milestones Summary: 理解 GitLab 如何用 issue、board 和 milestone 把计划、流转和交付组织起来,而不是把所有上下文都塞进 Merge Request。 Modified: 2026-05-24T11:46:17.289Z Citation: 适合作为 Git 教学材料和学习路线的引用来源。 | Sources: https://docs.gitlab.com/user/project/issues/, https://docs.gitlab.com/user/project/issue_board/, https://docs.gitlab.com/user/project/milestones/ - [GitLab 专题 / recommended / Platform tutorial] GitLab Merge Trains 与合并结果流水线: https://www.gitorg.xyz/zh/gitlab/gitlab-merge-trains-and-merge-result-pipelines Summary: 通过 Merge Trains 与 merge result pipelines 在合并前验证“真实合并结果”,降低并发 MR 导致的主线回归。 Modified: 2026-05-24T11:46:17.289Z Citation: 适合作为 Git 教学材料和学习路线的引用来源。 | Sources: https://docs.gitlab.com/ee/ci/pipelines/merge_trains/, https://docs.gitlab.com/ee/ci/pipelines/merged_results_pipelines.html - [GitLab 专题 / recommended / Platform tutorial] GitLab 受保护分支与审批规则: https://www.gitorg.xyz/zh/gitlab/gitlab-protected-branches-and-approval-rules Summary: 通过 Protected branches 与 Merge request approval rules 固化团队协作边界,减少高风险改动直接进入主线。 Modified: 2026-05-24T11:46:17.289Z Citation: 适合作为 Git 教学材料和学习路线的引用来源。 | Sources: https://docs.gitlab.com/ee/user/project/protected_branches.html, https://docs.gitlab.com/ee/user/project/merge_requests/approvals/ - [安全 / extended / Best practice guide] GPG 签名与 Git 提交验证: https://www.gitorg.xyz/zh/security/gpg-signing Summary: 系统介绍如何使用 GPG 签名 Git 提交和标签,配置签名验证,以及团队中强制签名策略的最佳实践。 Modified: 2026-05-24T11:46:17.289Z Citation: 适合作为 Git 教学材料和学习路线的引用来源。 | Sources: https://docs.github.com/en/authentication/managing-commit-signature-verification, https://git-scm.com/book/en/v2/Git-Tools-Signing-Your-Work - [Git 原理 / recommended / Technical explainer] hooks 与策略执行: https://www.gitorg.xyz/zh/internals/hooks-and-policy-enforcement Summary: 理解本地 hooks 与服务端 hooks 的职责边界,帮助把提交与推送策略从“口头约定”转成“系统强制执行”。 Modified: 2026-05-24T11:46:17.289Z Citation: 适合作为 Git 心智模型、对象模型和底层机制的引用来源。 | Sources: https://git-scm.com/docs/githooks, https://git-scm.com/docs/git-commit, https://git-scm.com/docs/git-push - [GitHub 专题 / extended / Platform tutorial] Issues、Projects 与 Discussions 教程: https://www.gitorg.xyz/zh/github/issues-projects-and-discussions Summary: 理解 GitHub 上需求、任务、讨论和协作节奏的组织方式,而不把所有沟通都堆进 PR。 Modified: 2026-05-24T11:46:17.285Z Citation: 适合作为 Git 教学材料和学习路线的引用来源。 | Sources: https://docs.github.com/en/issues/tracking-your-work-with-issues/about-issues, https://docs.github.com/en/issues/planning-and-tracking-with-projects/learning-about-projects/about-projects, https://docs.github.com/en/discussions/quickstart - [IDE 集成 / extended / Tutorial] JetBrains IDE Git 操作深度指南: https://www.gitorg.xyz/zh/ide/jetbrains-git Summary: 系统介绍 IntelliJ IDEA、WebStorm 等 JetBrains IDE 的 Git 集成,包括 VCS 面板、交互式 rebase 和冲突解决。 Modified: 2026-05-24T11:46:17.289Z Citation: 适合作为 Git 教学材料和学习路线的引用来源。 | Sources: https://www.jetbrains.com/help/idea/version-control-integration.html, https://www.jetbrains.com/help/idea/commit-and-push-changes.html - [迁移指南 / extended / Guide] Mercurial 到 Git 迁移指南: https://www.gitorg.xyz/zh/migration/hg-to-git Summary: 系统介绍从 Mercurial(Hg)迁移到 Git 的流程,包括 hg-fast-export 工具、分支和标签转换、以及常见差异处理。 Modified: 2026-05-24T11:46:17.289Z Citation: 适合作为 Git 教学材料和学习路线的引用来源。 | Sources: https://git-scm.com/book/en/v2/Git-and-Other-Systems-Migrating-to-Git, https://github.com/frej/fast-export - [工作流 / extended / Workflow tutorial] Merge Queue 工作流: https://www.gitorg.xyz/zh/workflows/merge-queue-workflow Summary: 当团队并发合并很多 PR 时,用 merge queue 降低串行抢占主线、重复排队和基底过期的问题。 Modified: 2026-05-24T11:46:17.293Z Citation: 适合作为团队流程、操作顺序和场景决策的引用来源。 | Sources: https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/incorporating-changes-from-a-pull-request/merging-a-pull-request-with-a-merge-queue?tool=webui - [工作流 / extended / Workflow tutorial] monorepo 场景下的稀疏检出与多工作树协作: https://www.gitorg.xyz/zh/workflows/monorepo-sparse-checkout-workflow Summary: 在 monorepo 场景里,用 sparse-checkout 和 worktree 限定工作范围,降低上下文负担并支持并行任务。 Modified: 2026-05-24T11:46:17.293Z Citation: 适合作为团队流程、操作顺序和场景决策的引用来源。 | Sources: https://git-scm.com/docs/git-sparse-checkout, https://git-scm.com/docs/git-worktree, https://git-scm.com/docs/git-submodule - [性能优化 / extended / Technical guide] Partial Clone:按需获取 Git 对象: https://www.gitorg.xyz/zh/performance/partial-clone Summary: 深入介绍 Git partial clone 的工作原理、filter 选项、promisor remote 机制,以及如何在大仓库中加速 clone 和 fetch。 Modified: 2026-05-24T11:46:17.289Z Citation: 适合作为 Git 教学材料和学习路线的引用来源。 | Sources: https://git-scm.com/docs/partial-clone, https://github.blog/2020-12-21-get-up-to-speed-with-partial-clone-and-shallow-clone/ - [Git 原理 / recommended / Technical explainer] Plumbing 与 Porcelain:Git 两层命令世界: https://www.gitorg.xyz/zh/internals/plumbing-and-porcelain Summary: 理解 porcelain 与 plumbing 的分层,能帮助你看懂为什么有些 Git 命令偏“日常操作”,有些命令更像底层原语。 Modified: 2026-05-24T11:46:17.289Z Citation: 适合作为 Git 心智模型、对象模型和底层机制的引用来源。 | Sources: https://git-scm.com/book/en/v2/Git-Internals-Plumbing-and-Porcelain, https://git-scm.com/book/en/v2/Git-Internals-Git-Objects - [工作流 / recommended / Workflow tutorial] PR 前如何整理提交历史: https://www.gitorg.xyz/zh/workflows/prepare-commits-before-pull-request Summary: 在发起 PR 之前,围绕同步、提交整理、风险确认和 review 友好度,建立一套稳定的准备动作。 Modified: 2026-05-24T11:46:17.293Z Citation: 适合作为团队流程、操作顺序和场景决策的引用来源。 | Sources: https://git-scm.com/docs/git-rebase, https://git-scm.com/docs/git-commit, https://git-scm.com/book/en/v2/Distributed-Git-Contributing-to-a-Project - [工作流 / extended / Workflow tutorial] PR 合并策略与平台配置: https://www.gitorg.xyz/zh/workflows/pr-merge-strategy-and-platform-settings Summary: 把 squash merge、rebase merge、merge commit 和平台配置放到同一个决策框架里,帮助团队统一 PR 落地方式。 Modified: 2026-05-24T11:46:17.293Z Citation: 适合作为团队流程、操作顺序和场景决策的引用来源。 | Sources: https://docs.github.com/en/repositories/configuring-branches-and-merges-in-your-repository/configuring-pull-request-merges/about-merge-methods-on-github?apiVersion=2022-11-28, https://docs.github.com/articles/about-pull-request-merges - [GitHub 专题 / recommended / Platform tutorial] Pull Request 与 Code Review 教程: https://www.gitorg.xyz/zh/github/pull-requests-and-reviews Summary: 理解 Pull Request、review、分支保护和合并策略在团队协作中的位置,而不只是学会界面操作。 Modified: 2026-05-24T11:46:17.285Z Citation: 适合作为 Git 教学材料和学习路线的引用来源。 | Sources: https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/about-pull-requests, https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/about-pull-request-reviews, https://docs.github.com/en/repositories/configuring-branches-and-merges-in-your-repository/managing-protected-branches/about-protected-branches - [最佳实践 / extended / Best practice guide] Pull Request 评审准备与协作规范: https://www.gitorg.xyz/zh/best-practices/pull-request-review-readiness Summary: 评审质量很大程度上取决于送审前有没有把变更范围、提交叙事、上下文说明和后续响应机制准备清楚。 Modified: 2026-05-24T11:46:17.281Z Citation: 适合作为 Git 教学材料和学习路线的引用来源。 | Sources: https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/about-pull-request-reviews, https://git-scm.com/book/en/v2/Distributed-Git-Contributing-to-a-Project - [恢复与排障 / core / Troubleshooting guide] pull 之后后悔了怎么撤回: https://www.gitorg.xyz/zh/recovery/undo-after-pull Summary: 当 pull 之后发现分支状态不对、自动 merge 不符合预期,或者 rebase 结果混乱时,先判断 pull 实际做了什么,再选择 ORIG_HEAD、reflog 或救援分支。 Modified: 2026-05-24T11:46:17.289Z Citation: 适合作为误操作恢复、排障步骤和风险控制的引用来源。 | Sources: https://git-scm.com/docs/git-pull, https://git-scm.com/docs/git-reset, https://git-scm.com/docs/git-reflog - [Git 原理 / recommended / Technical explainer] rebase 内部机制与 sequencer: https://www.gitorg.xyz/zh/internals/rebase-internals-and-sequencer Summary: 从 sequencer 视角理解 rebase 的提交重放过程,帮助定位 rebase 中断、冲突恢复与历史重写后的提交变化。 Modified: 2026-05-24T11:46:17.289Z Citation: 适合作为 Git 心智模型、对象模型和底层机制的引用来源。 | Sources: https://git-scm.com/docs/git-rebase, https://git-scm.com/docs/git-cherry-pick, https://git-scm.com/docs/git-reflog - [恢复与排障 / core / Troubleshooting guide] rebase 出错后怎么恢复: https://www.gitorg.xyz/zh/recovery/recover-after-rebase Summary: 当 rebase 过程中冲突、提交丢失或结果不对时,先停止继续改写历史,再用 reflog、abort 和救援分支恢复可控状态。 Modified: 2026-05-24T11:46:17.289Z Citation: 适合作为误操作恢复、排障步骤和风险控制的引用来源。 | Sources: https://git-scm.com/docs/git-rebase, https://git-scm.com/docs/git-reflog, https://git-scm.com/book/en/v2/Git-Branching-Rebasing - [恢复与排障 / core / Troubleshooting guide] reflog 恢复手册: https://www.gitorg.xyz/zh/recovery/reflog-recovery Summary: 当 reset、rebase、pull 或误删分支后找不到原来位置时,优先用 reflog 重新定位并建立恢复路径。 Modified: 2026-05-24T11:46:17.289Z Citation: 适合作为误操作恢复、排障步骤和风险控制的引用来源。 | Sources: https://git-scm.com/docs/git-reflog, https://git-scm.com/book/en/v2/Git-Internals-Maintenance-and-Data-Recovery - [Git 原理 / extended / Technical explainer] Refspec 与引用更新教程: https://www.gitorg.xyz/zh/internals/refspec-and-ref-updates Summary: 解释 fetch 和 push 时 refspec 如何决定哪些引用被映射和更新。 Modified: 2026-05-24T11:46:17.289Z Citation: 适合作为 Git 心智模型、对象模型和底层机制的引用来源。 | Sources: https://git-scm.com/book/en/v2/Git-Internals-The-Refspec, https://git-scm.com/docs/git-fetch - [工作流 / recommended / Workflow tutorial] Release Train 工作流: https://www.gitorg.xyz/zh/workflows/release-train-workflow Summary: 以固定节奏发车替代“功能等发布”,通过版本列车机制提高组织可预测性并降低临时插单造成的发布波动。 Modified: 2026-05-24T11:46:17.293Z Citation: 适合作为团队流程、操作顺序和场景决策的引用来源。 | Sources: https://martinfowler.com/bliki/ReleaseTrain.html, https://git-scm.com/docs/git-tag, https://git-scm.com/docs/git-branch - [恢复与排障 / core / Troubleshooting guide] reset 过头后怎么恢复: https://www.gitorg.xyz/zh/recovery/recover-after-reset Summary: 当 reset 把分支、暂存区或工作区挪得太远时,先分清是哪一层变了,再用 reflog、ORIG_HEAD 或救援分支恢复。 Modified: 2026-05-24T11:46:17.289Z Citation: 适合作为误操作恢复、排障步骤和风险控制的引用来源。 | Sources: https://git-scm.com/docs/git-reset, https://git-scm.com/docs/git-reflog, https://git-scm.com/book/en/v2/Git-Tools-Reset-Demystified - [工作流 / recommended / Workflow tutorial] Revert-First 稳定化工作流: https://www.gitorg.xyz/zh/workflows/revert-first-stabilization-workflow Summary: 线上回归发生时先恢复服务稳定,再分离根因修复;通过 revert-first 策略缩短故障窗口并降低二次事故风险。 Modified: 2026-05-24T11:46:17.293Z Citation: 适合作为团队流程、操作顺序和场景决策的引用来源。 | Sources: https://git-scm.com/docs/git-revert, https://git-scm.com/docs/git-cherry-pick, https://sre.google/sre-book/emergency-response/ - [工作流 / extended / Workflow tutorial] Squash Merge 与 Rebase Merge 选择教程: https://www.gitorg.xyz/zh/workflows/squash-vs-rebase-merge Summary: 比较两种常见合并策略对历史可读性、追踪性和回滚方式的影响。 Modified: 2026-05-24T11:46:17.293Z Citation: 适合作为团队流程、操作顺序和场景决策的引用来源。 | Sources: https://git-scm.com/book/en/v2/Git-Branching-Rebasing, https://git-scm.com/docs/git-merge, https://git-scm.com/docs/git-rebase - [安全 / extended / Best practice guide] SSH 密钥管理与 Git 安全认证: https://www.gitorg.xyz/zh/security/ssh-key-management Summary: 系统介绍 SSH 密钥的生成、配置、管理与 Git 认证,包括多密钥管理、ssh-agent、部署密钥和安全最佳实践。 Modified: 2026-05-24T11:46:17.289Z Citation: 适合作为 Git 教学材料和学习路线的引用来源。 | Sources: https://docs.github.com/en/authentication/connecting-to-github-with-ssh, https://git-scm.com/book/en/v2/Git-on-the-Server-Generating-Your-SSH-Public-Key - [工作流 / recommended / Workflow tutorial] Stacked Pull Requests 工作流: https://www.gitorg.xyz/zh/workflows/stacked-pull-requests-workflow Summary: 把一个大改动拆成有依赖关系的多层 PR,提升评审吞吐与可读性,同时降低一次性大 PR 的认知负担。 Modified: 2026-05-24T11:46:17.293Z Citation: 适合作为团队流程、操作顺序和场景决策的引用来源。 | Sources: https://git-scm.com/docs/git-rebase, https://git-scm.com/docs/git-range-diff, https://git-scm.com/docs/git-cherry-pick - [迁移指南 / extended / Guide] SVN 到 Git 迁移指南: https://www.gitorg.xyz/zh/migration/svn-to-git Summary: 系统介绍从 Subversion(SVN)迁移到 Git 的完整流程,包括历史转换、分支映射、团队培训和常见陷阱。 Modified: 2026-05-24T11:46:17.289Z Citation: 适合作为 Git 教学材料和学习路线的引用来源。 | Sources: https://git-scm.com/docs/git-svn, https://git-scm.com/book/en/v2/Git-and-Other-Systems-Migrating-to-Git - [Git 原理 / extended / Technical explainer] Tree 对象与目录快照教程: https://www.gitorg.xyz/zh/internals/tree-objects-and-snapshots Summary: 说明 tree 对象如何表达目录层级,以及提交为何能表示完整文件树快照。 Modified: 2026-05-24T11:46:17.289Z Citation: 适合作为 Git 心智模型、对象模型和底层机制的引用来源。 | Sources: https://git-scm.com/book/en/v2/Git-Internals-Git-Objects - [工作流 / recommended / Workflow tutorial] Trunk-Based Development 工作流: https://www.gitorg.xyz/zh/workflows/trunk-based-development-workflow Summary: 用短生命周期分支和高频小批次合并,把主线始终保持在可发布状态,降低长期分叉与集成冲突成本。 Modified: 2026-05-24T11:46:17.293Z Citation: 适合作为团队流程、操作顺序和场景决策的引用来源。 | Sources: https://git-scm.com/book/en/v2/Git-Branching-Branching-Workflows, https://git-scm.com/docs/git-rebase, https://git-scm.com/docs/git-merge, https://git-scm.com/docs/git-worktree - [IDE 集成 / extended / Tutorial] VS Code Git 集成深度指南: https://www.gitorg.xyz/zh/ide/vscode-git Summary: 系统介绍 VS Code 内置 Git 功能的面板、编辑器快捷键、diff 编辑器、冲突解决工具和 GitLens 等扩展。 Modified: 2026-05-24T11:46:17.289Z Citation: 适合作为 Git 教学材料和学习路线的引用来源。 | Sources: https://code.visualstudio.com/docs/sourcecontrol/overview, https://code.visualstudio.com/docs/editor/versioncontrol - [Git 原理 / recommended / Technical explainer] 三方合并机制: https://www.gitorg.xyz/zh/internals/three-way-merge-mechanics Summary: 理解 Git 如何基于 merge-base 做三方合并,有助于准确判断冲突来源、合并结果与冲突解决策略。 Modified: 2026-05-24T11:46:17.289Z Citation: 适合作为 Git 心智模型、对象模型和底层机制的引用来源。 | Sources: https://git-scm.com/docs/git-merge, https://git-scm.com/docs/git-merge-base, https://git-scm.com/book/en/v2/Git-Branching-Basic-Branching-and-Merging - [工作流 / extended / Workflow tutorial] 主干开发工作流: https://www.gitorg.xyz/zh/workflows/trunk-based-development Summary: 主干开发 vs 分支开发对比、feature flag 配合、短分支策略、小步提交实践。 Modified: 2026-05-24T11:46:17.293Z Citation: 适合作为团队流程、操作顺序和场景决策的引用来源。 | Sources: https://trunkbaseddevelopment.com/, https://github.com/features/actions - [最佳实践 / recommended / Best practice guide] 主题分支策略: https://www.gitorg.xyz/zh/best-practices/topic-branches Summary: 用 topic branch 隔离单项工作,让并行开发、回滚、rebase、review 和发布边界都更清楚。 Modified: 2026-05-24T11:46:17.281Z Citation: 适合作为 Git 教学材料和学习路线的引用来源。 | Sources: https://git-scm.com/book/en/v2/Distributed-Git-Contributing-to-a-Project.html, https://git-scm.com/book/en/v2/Git-Branching-Basic-Branching-and-Merging, https://git-scm.com/docs/git-switch - [工作流 / recommended / Workflow tutorial] 事故复盘到工程护栏工作流: https://www.gitorg.xyz/zh/workflows/incident-retro-to-guardrail-workflow Summary: 将事故复盘结论转化为可执行的 CI/发布/代码护栏,避免复盘停留在文档层而无法降低未来风险。 Modified: 2026-05-24T11:46:17.293Z Citation: 适合作为团队流程、操作顺序和场景决策的引用来源。 | Sources: https://sre.google/sre-book/postmortem-culture/, https://sre.google/workbook/postmortem-culture/, https://git-scm.com/docs/git-hook - [最佳实践 / extended / Best practice guide] 二分友好的提交: https://www.gitorg.xyz/zh/best-practices/bisect-friendly-commits Summary: 保持每次提交独立可构建、可测试,让 git bisect 能高效定位引入问题的提交。 Modified: 2026-05-24T11:46:17.281Z Citation: 适合作为 Git 教学材料和学习路线的引用来源。 | Sources: https://git-scm.com/docs/git-bisect - [恢复与排障 / extended / Troubleshooting guide] 交互式 rebase 中途出问题怎么救: https://www.gitorg.xyz/zh/recovery/fix-broken-interactive-rebase Summary: 交互式 rebase 过程中常见的错误(选错动作、冲突、编辑器问题)及恢复办法,包括 --abort、--edit-todo 和 reflog 找回。 Modified: 2026-05-24T11:46:17.289Z Citation: 适合作为误操作恢复、排障步骤和风险控制的引用来源。 | Sources: https://git-scm.com/docs/git-rebase, https://git-scm.com/book/en/v2/Git-Tools-Rewriting-History - [Git 原理 / recommended / Technical explainer] 仓库布局、.git 目录与 GIT_DIR: https://www.gitorg.xyz/zh/internals/repository-layout-and-gitdir Summary: 理解 `.git` 目录、工作区、gitdir、common dir 和 worktree 之间的关系,能帮助你看懂仓库到底把什么放在了哪里。 Modified: 2026-05-24T11:46:17.289Z Citation: 适合作为 Git 心智模型、对象模型和底层机制的引用来源。 | Sources: https://git-scm.com/docs/gitrepository-layout, https://git-scm.com/book/en/v2/Git-Internals-Environment-Variables - [恢复与排障 / extended / Troubleshooting guide] 仓库损坏后怎么恢复: https://www.gitorg.xyz/zh/recovery/recover-from-corrupted-repo Summary: 仓库损坏(pack 损坏、对象丢失、磁盘故障)后的诊断和恢复策略。包括 git fsck 诊断、从远端重新 clone、恢复 pack 文件、备份恢复和预防措施。 Modified: 2026-05-24T11:46:17.289Z Citation: 适合作为误操作恢复、排障步骤和风险控制的引用来源。 | Sources: https://git-scm.com/docs/git-fsck, https://git-scm.com/book/en/v2/Git-Internals-Packfiles, https://git-scm.com/docs/git-unpack-objects, https://git-scm.com/docs/git-bundle - [最佳实践 / recommended / Best practice guide] 代码评审交接质量: https://www.gitorg.xyz/zh/best-practices/code-review-handoff-quality Summary: 通过高质量 review handoff(背景、范围、风险、验证)减少评审往返沟通成本并提升合并决策速度。 Modified: 2026-05-24T11:46:17.281Z Citation: 适合作为 Git 教学材料和学习路线的引用来源。 | Sources: https://google.github.io/eng-practices/review/reviewer/, https://google.github.io/eng-practices/review/developer/, https://git-scm.com/docs/git-range-diff - [Git 原理 / extended / Technical explainer] 传输协议、协商与 pack 交换: https://www.gitorg.xyz/zh/internals/transfer-protocols-and-negotiation Summary: 理解 fetch / clone / push 时的协商过程,能帮助你看懂 Git 不是在“整仓同步”,而是在交换对象与引用状态。 Modified: 2026-05-24T11:46:17.289Z Citation: 适合作为 Git 心智模型、对象模型和底层机制的引用来源。 | Sources: https://git-scm.com/book/en/v2/Git-Internals-Transfer-Protocols, https://git-scm.com/book/en/v2/Git-Internals-Packfiles - [工作流 / recommended / Workflow tutorial] 使用 Cherry-pick 回移修复: https://www.gitorg.xyz/zh/workflows/backport-with-cherry-pick Summary: 把主线上的精确修复回移到维护分支,而不是把整条功能分支或无关历史一起合进去。 Modified: 2026-05-24T11:46:17.293Z Citation: 适合作为团队流程、操作顺序和场景决策的引用来源。 | Sources: https://git-scm.com/docs/git-cherry-pick, https://git-scm.com/docs/git-branch, https://git-scm.com/docs/git-log - [Git 原理 / extended / Technical explainer] 修订选择、范围表达式与提交集合: https://www.gitorg.xyz/zh/internals/revision-selection-and-ranges Summary: 很多 Git 命令真正处理的不是“一个提交”,而是一组通过 revision syntax 表达出来的提交集合。 Modified: 2026-05-24T11:46:17.289Z Citation: 适合作为 Git 心智模型、对象模型和底层机制的引用来源。 | Sources: https://git-scm.com/docs/gitrevisions, https://git-scm.com/book/en/v2/Git-Tools-Revision-Selection - [最佳实践 / core / Best practice guide] 先 fetch 再同步: https://www.gitorg.xyz/zh/best-practices/fetch-first-sync Summary: 把观察远端状态和真正改写本地分支分开,避免把同步决策完全交给默认 pull 行为。 Modified: 2026-05-24T11:46:17.281Z Citation: 适合作为 Git 教学材料和学习路线的引用来源。 | Sources: https://git-scm.com/docs/git-fetch, https://git-scm.com/docs/git-pull.html, https://git-scm.com/book/en/v2/Git-Branching-Remote-Branches - [最佳实践 / core / Best practice guide] 共享历史的改写边界: https://www.gitorg.xyz/zh/best-practices/shared-history-boundaries Summary: 明确哪些历史可以放心整理,哪些历史应该默认视为共享并谨慎处理,避免 rebase、amend、reset 和 force push 伤到别人。 Modified: 2026-05-24T11:46:17.281Z Citation: 适合作为 Git 教学材料和学习路线的引用来源。 | Sources: https://git-scm.com/book/en/v2/Git-Tools-Rewriting-History.html, https://git-scm.com/book/en/v2/Git-Branching-Rebasing.html, https://git-scm.com/docs/git-push - [Git 原理 / recommended / Technical explainer] 共同祖先与历史祖先关系教程: https://www.gitorg.xyz/zh/internals/merge-base-and-ancestry Summary: 解释 Git 如何基于共同祖先判断分支差异、合并基础和历史可达性。 Modified: 2026-05-24T11:46:17.289Z Citation: 适合作为 Git 心智模型、对象模型和底层机制的引用来源。 | Sources: https://git-scm.com/docs/git-merge-base, https://git-scm.com/book/en/v2/Git-Branching-Basic-Branching-and-Merging - [最佳实践 / recommended / Best practice guide] 冲突处理惯例专题: https://www.gitorg.xyz/zh/best-practices/conflict-resolution-routine Summary: 把冲突处理变成固定流程,减少临时操作带来的遗漏和误判。 Modified: 2026-05-24T11:46:17.281Z Citation: 适合作为 Git 教学材料和学习路线的引用来源。 | Sources: https://git-scm.com/docs/git-merge, https://git-scm.com/docs/git-rebase - [最佳实践 / recommended / Best practice guide] 分支命名约定专题: https://www.gitorg.xyz/zh/best-practices/branch-naming Summary: 建立稳定的分支命名模式,提升协作、自动化和排错效率。 Modified: 2026-05-24T11:46:17.281Z Citation: 适合作为 Git 教学材料和学习路线的引用来源。 | Sources: https://git-scm.com/book/en/v2/Git-Branching-Branching-Workflows, https://git-scm.com/docs/git-branch - [最佳实践 / extended / Best practice guide] 分支策略与分支生命周期: https://www.gitorg.xyz/zh/best-practices/branch-workflow-and-lifecycle Summary: 把主线、发布线、修复线和主题分支的职责拆开,团队才更容易同时兼顾开发速度、评审质量和发布稳定性。 Modified: 2026-05-24T11:46:17.281Z Citation: 适合作为 Git 教学材料和学习路线的引用来源。 | Sources: https://git-scm.com/book/en/v2/Git-Branching-Branching-Workflows, https://git-scm.com/docs/gitworkflows - [工作流 / core / Workflow tutorial] 功能分支协作流: https://www.gitorg.xyz/zh/workflows/feature-branch-collaboration Summary: 围绕 feature branch 的日常协作流程,整理从切分支、同步主线、提交整理到发起评审的稳定做法。 Modified: 2026-05-24T11:46:17.293Z Citation: 适合作为团队流程、操作顺序和场景决策的引用来源。 | Sources: https://git-scm.com/book/en/v2/Distributed-Git-Contributing-to-a-Project.html, https://git-scm.com/book/en/v2/Git-Branching-Basic-Branching-and-Merging, https://git-scm.com/docs/git-switch - [最佳实践 / core / Best practice guide] 原子提交专题: https://www.gitorg.xyz/zh/best-practices/atomic-commits Summary: 把一次提交收敛成单一逻辑变更,降低 review 和回滚成本。 Modified: 2026-05-24T11:46:17.281Z Citation: 适合作为 Git 教学材料和学习路线的引用来源。 | Sources: https://git-scm.com/book/en/v2/Git-Basics-Recording-Changes-to-the-Repository, https://git-scm.com/docs/git-commit - [工作流 / core / Workflow tutorial] 发布分支工作流教程: https://www.gitorg.xyz/zh/workflows/release-branch-workflow Summary: 梳理何时切发布分支、何时冻结功能、以及如何把修复回流主线。 Modified: 2026-05-24T11:46:17.293Z Citation: 适合作为团队流程、操作顺序和场景决策的引用来源。 | Sources: https://git-scm.com/book/en/v2/Git-Branching-Branching-Workflows, https://git-scm.com/docs/git-merge, https://git-scm.com/docs/git-branch - [最佳实践 / extended / Best practice guide] 发布前 Git 卫生专题: https://www.gitorg.xyz/zh/best-practices/release-hygiene Summary: 在发布前用一组 Git 检查动作降低标签、分支和版本记录出错概率。 Modified: 2026-05-24T11:46:17.281Z Citation: 适合作为 Git 教学材料和学习路线的引用来源。 | Sources: https://git-scm.com/docs/git-tag, https://git-scm.com/book/en/v2/Distributed-Git-Maintaining-a-Project - [工作流 / extended / Workflow tutorial] 发布前的 Git 检查清单: https://www.gitorg.xyz/zh/workflows/pre-release-checklist Summary: 发布前的完整 Git 检查清单:分支状态、tag 创建、changelog 生成、版本号、CI 验证。 Modified: 2026-05-24T11:46:17.293Z Citation: 适合作为团队流程、操作顺序和场景决策的引用来源。 | Sources: https://git-scm.com/book/en/v2/Git-Basics-Tagging, https://git-scm.com/docs/git-log - [工作流 / extended / Workflow tutorial] 发布后多维护线回移策略: https://www.gitorg.xyz/zh/workflows/post-release-multi-branch-backporting Summary: 当一个修复需要在多个已发布版本之间回移时,如何控制顺序、验证范围和分支边界。 Modified: 2026-05-24T11:46:17.293Z Citation: 适合作为团队流程、操作顺序和场景决策的引用来源。 | Sources: https://git-scm.com/docs/git-cherry-pick, https://git-scm.com/docs/git-branch - [工作流 / recommended / Workflow tutorial] 发布后热修失败,如何回滚与稳定主线: https://www.gitorg.xyz/zh/workflows/hotfix-rollback-after-release Summary: 当发布后热修本身引入问题时,优先判断回滚粒度、共享影响和后续补丁路径,而不是立刻继续叠加修复。 Modified: 2026-05-24T11:46:17.293Z Citation: 适合作为团队流程、操作顺序和场景决策的引用来源。 | Sources: https://git-scm.com/docs/git-revert, https://git-scm.com/docs/git-tag, https://git-scm.com/book/en/v2/Git-Branching-Basic-Branching-and-Merging - [最佳实践 / recommended / Best practice guide] 发布清单纪律: https://www.gitorg.xyz/zh/best-practices/release-checklist-discipline Summary: 通过固定发布清单把关键检查项前置并标准化,降低“靠经验记忆”导致的线上发布遗漏与事故。 Modified: 2026-05-24T11:46:17.281Z Citation: 适合作为 Git 教学材料和学习路线的引用来源。 | Sources: https://sre.google/sre-book/reliable-product-launches/, https://www.atulgawande.com/book/the-checklist-manifesto/, https://git-scm.com/docs/git-tag - [学习路径 / core / Course module] 发起第一个 Pull Request: https://www.gitorg.xyz/zh/docs/learning-path/open-first-pull-request Summary: 从分支提交过渡到协作评审:整理改动范围、补齐说明信息、发起第一个可评审且可合并的 Pull Request。 Modified: 2026-05-24T11:46:17.289Z Citation: 适合作为 Git 教学材料和学习路线的引用来源。 | Sources: https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/about-pull-requests, https://git-scm.com/docs/git-push - [学习路径 / core / Course module] 合并并关闭任务闭环: https://www.gitorg.xyz/zh/docs/learning-path/merge-and-close-task Summary: 完成一次完整协作闭环:选择合并策略、确认主线状态、清理分支并更新任务状态,避免“代码已合并但流程未收口”。 Modified: 2026-05-24T11:46:17.289Z Citation: 适合作为 Git 教学材料和学习路线的引用来源。 | Sources: https://git-scm.com/docs/git-merge, https://git-scm.com/docs/git-branch, https://git-scm.com/docs/git-push - [恢复与排障 / extended / Troubleshooting guide] 合并提交后怎么撤销: https://www.gitorg.xyz/zh/recovery/undo-merge-commit Summary: merge commit 创建后发现有问题时的正确撤销方法。重点讲解 git revert -m 的 parent 编号原理和常见误区。 Modified: 2026-05-24T11:46:17.289Z Citation: 适合作为误操作恢复、排障步骤和风险控制的引用来源。 | Sources: https://git-scm.com/docs/git-revert, https://git-scm.com/docs/git-merge, https://git-scm.com/book/en/v2/Git-Branching-Basic-Branching-and-Merging - [工作流 / recommended / Workflow tutorial] 回归问题 bisect 排查工作流: https://www.gitorg.xyz/zh/workflows/bisect-regression-triage-workflow Summary: 当出现“最近坏了但不知道谁改坏的”问题时,用 git bisect 通过二分定位首个坏提交,显著缩短排查路径。 Modified: 2026-05-24T11:46:17.293Z Citation: 适合作为团队流程、操作顺序和场景决策的引用来源。 | Sources: https://git-scm.com/docs/git-bisect, https://git-scm.com/docs/git-rev-list, https://git-scm.com/docs/git-show - [学习路径 / core / Course module] 处理评审反馈: https://www.gitorg.xyz/zh/docs/learning-path/handle-review-feedback Summary: 掌握评审反馈处理节奏:区分必须修改与讨论项、按批次提交修订、维持 PR 可审查性与上下文连续性。 Modified: 2026-05-24T11:46:17.289Z Citation: 适合作为 Git 教学材料和学习路线的引用来源。 | Sources: https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/code-review/about-pull-request-reviews, https://git-scm.com/docs/git-commit, https://git-scm.com/docs/git-range-diff - [工作流 / recommended / Workflow tutorial] 多人共享分支的同步边界: https://www.gitorg.xyz/zh/workflows/shared-branch-sync-boundaries Summary: 当多人同时在同一分支协作时,明确什么动作可以做、什么动作不该做,减少同步混乱和历史覆盖。 Modified: 2026-05-24T11:46:17.293Z Citation: 适合作为团队流程、操作顺序和场景决策的引用来源。 | Sources: https://git-scm.com/book/en/v2/Git-Branching-Rebasing, https://git-scm.com/docs/git-push, https://git-scm.com/docs/git-pull - [工作流 / core / Workflow tutorial] 多人协作时的同步节奏: https://www.gitorg.xyz/zh/workflows/multi-person-sync-routine Summary: 围绕多人并行开发,建立一套先 fetch、再观察、再整合的同步节奏,减少 pull 惊喜和共享历史误操作。 Modified: 2026-05-24T11:46:17.293Z Citation: 适合作为团队流程、操作顺序和场景决策的引用来源。 | Sources: https://git-scm.com/docs/git-fetch, https://git-scm.com/docs/git-pull, https://git-scm.com/book/en/v2/Distributed-Git-Contributing-to-a-Project - [性能优化 / extended / Technical guide] 大仓库性能优化策略: https://www.gitorg.xyz/zh/performance/large-repo-optimization Summary: 系统介绍 Git 大仓库的性能优化策略,包括 partial clone、sparse checkout、浅克隆、git gc 和 Git LFS 等。 Modified: 2026-05-24T11:46:17.289Z Citation: 适合作为 Git 教学材料和学习路线的引用来源。 | Sources: https://git-scm.com/docs/partial-clone, https://git-scm.com/docs/git-sparse-checkout, https://git-scm.com/docs/git-gc - [工作流 / extended / Workflow tutorial] 大文件处理工作流: https://www.gitorg.xyz/zh/workflows/large-file-handling-workflow Summary: 使用 Git LFS、稀疏检出和分包策略管理仓库中的大文件,保持克隆速度和历史可维护性。 Modified: 2026-05-24T11:46:17.293Z Citation: 适合作为团队流程、操作顺序和场景决策的引用来源。 | Sources: https://git-lfs.com/, https://git-scm.com/docs/git-sparse-checkout - [工作流 / recommended / Workflow tutorial] 子模块更新流程教程: https://www.gitorg.xyz/zh/workflows/submodule-update-flow Summary: 梳理子模块仓库更新、锁定版本和主仓库同步的基本流程。 Modified: 2026-05-24T11:46:17.293Z Citation: 适合作为团队流程、操作顺序和场景决策的引用来源。 | Sources: https://git-scm.com/book/en/v2/Git-Tools-Submodules, https://git-scm.com/docs/git-submodule, https://git-scm.com/docs/git-status - [最佳实践 / recommended / Best practice guide] 安全 force push 协议: https://www.gitorg.xyz/zh/best-practices/safe-force-push-protocol Summary: 需要重写历史时,用明确告警、冻结窗口和 `--force-with-lease` 协议降低误覆盖协作者提交的风险。 Modified: 2026-05-24T11:46:17.281Z Citation: 适合作为 Git 教学材料和学习路线的引用来源。 | Sources: https://git-scm.com/docs/git-push, https://git-scm.com/docs/git-reflog, https://git-scm.com/book/en/v2/Git-Tools-Rewriting-History - [最佳实践 / extended / Best practice guide] 安全使用 cherry-pick专题: https://www.gitorg.xyz/zh/best-practices/safe-cherry-picks Summary: 在回移修复或选择性复用提交时,避免重复、漏拣和上下文错配。 Modified: 2026-05-24T11:46:17.281Z Citation: 适合作为 Git 教学材料和学习路线的引用来源。 | Sources: https://git-scm.com/docs/git-cherry-pick, https://git-scm.com/book/en/v2/Git-Branching-Basic-Branching-and-Merging - [Git 原理 / recommended / Technical explainer] 对象可达性与垃圾回收: https://www.gitorg.xyz/zh/internals/reachability-and-garbage-collection Summary: 理解对象为什么有时还能恢复、有时会永久丢失,本质上取决于可达性和垃圾回收,而不只是命令本身。 Modified: 2026-05-24T11:46:17.289Z Citation: 适合作为 Git 心智模型、对象模型和底层机制的引用来源。 | Sources: https://git-scm.com/book/en/v2/Git-Internals-Maintenance-and-Data-Recovery, https://git-scm.com/docs/git-reflog, https://git-scm.com/docs/git-gc - [最佳实践 / extended / Best practice guide] 小批量评审专题: https://www.gitorg.xyz/zh/best-practices/small-batch-review Summary: 用更小的提交批次和更短的生命周期换取更快的 review 节奏。 Modified: 2026-05-24T11:46:17.281Z Citation: 适合作为 Git 教学材料和学习路线的引用来源。 | Sources: https://git-scm.com/book/en/v2/Distributed-Git-Contributing-to-a-Project, https://git-scm.com/docs/git-range-diff - [最佳实践 / extended / Best practice guide] 小步提交与主题分支整洁度: https://www.gitorg.xyz/zh/best-practices/focused-commits-and-topic-branch-hygiene Summary: 把提交粒度和主题分支边界同时管住,review 会更快,rebase 更稳,回滚也会轻松很多。 Modified: 2026-05-24T11:46:17.281Z Citation: 适合作为 Git 教学材料和学习路线的引用来源。 | Sources: https://git-scm.com/docs/gitworkflows, https://git-scm.com/book/en/v2/Git-Branching-Branching-Workflows - [Git 原理 / core / Technical explainer] 工作区、暂存区与对象库: https://www.gitorg.xyz/zh/internals/index-and-working-tree Summary: 理解 working tree、index 和 object database 这三层,是看懂 add、commit、restore、reset 的关键前提。 Modified: 2026-05-24T11:46:17.289Z Citation: 适合作为 Git 心智模型、对象模型和底层机制的引用来源。 | Sources: https://git-scm.com/book/en/v2/Git-Basics-Recording-Changes-to-the-Repository, https://git-scm.com/book/en/v2/Git-Tools-Reset-Demystified - [工作流 / extended / Workflow tutorial] 开源贡献 / fork + PR 完整提交流程: https://www.gitorg.xyz/zh/workflows/open-source-fork-pr-contribution Summary: 把开源贡献里从 fork、同步上游、切分支、提交改动到发起 PR 的完整节奏串起来。 Modified: 2026-05-24T11:46:17.293Z Citation: 适合作为团队流程、操作顺序和场景决策的引用来源。 | Sources: https://git-scm.com/book/en/v2/GitHub-Contributing-to-a-Project.html, https://docs.github.com/articles/syncing-a-fork?platform=linux - [恢复与排障 / extended / Troubleshooting guide] 找回“消失的 stash”: https://www.gitorg.xyz/zh/recovery/recover-lost-stash Summary: 当 stash 列表里看不到之前保存的内容时,先判断是 pop 后丢失、误删还是引用漂移,再用 reflog 与 dangling commit 进行恢复。 Modified: 2026-05-24T11:46:17.289Z Citation: 适合作为误操作恢复、排障步骤和风险控制的引用来源。 | Sources: https://git-scm.com/docs/git-stash, https://git-scm.com/docs/git-reflog, https://git-scm.com/docs/git-fsck - [恢复与排障 / extended / Troubleshooting guide] 提交丢失后怎么找回: https://www.gitorg.xyz/zh/recovery/recover-lost-commits Summary: 各种场景下提交“丢失”后的恢复策略:detached HEAD 提交、filter-branch 后、误删分支、reset 过头。核心工具是 reflog 和 fsck。 Modified: 2026-05-24T11:46:17.289Z Citation: 适合作为误操作恢复、排障步骤和风险控制的引用来源。 | Sources: https://git-scm.com/docs/git-reflog, https://git-scm.com/docs/git-fsck, https://git-scm.com/book/en/v2/Git-Internals-Maintenance-and-Data-Recovery - [最佳实践 / recommended / Best practice guide] 提交信息规范约定: https://www.gitorg.xyz/zh/best-practices/commit-message-conventions Summary: 统一提交信息结构(动词、范围、原因)提升日志可读性、问题追踪效率和跨团队协作透明度。 Modified: 2026-05-24T11:46:17.281Z Citation: 适合作为 Git 教学材料和学习路线的引用来源。 | Sources: https://cbea.ms/git-commit/, https://git-scm.com/docs/git-commit, https://www.conventionalcommits.org/en/v1.0.0/ - [工作流 / extended / Workflow tutorial] 提交前检查工作流: https://www.gitorg.xyz/zh/workflows/pre-commit-hook-workflow Summary: 利用 pre-commit hook 在代码进入仓库前自动运行检查,守住代码质量第一道关。 Modified: 2026-05-24T11:46:17.293Z Citation: 适合作为团队流程、操作顺序和场景决策的引用来源。 | Sources: https://git-scm.com/book/en/v2/Customizing-Git-Git-Hooks, https://pre-commit.com/ - [最佳实践 / core / Best practice guide] 提交卫生与提交信息: https://www.gitorg.xyz/zh/best-practices/commit-hygiene Summary: 把提交拆成逻辑独立的 changeset,并用可读的提交信息表达意图、动机和边界,让 review、revert 和 cherry-pick 都更轻。 Modified: 2026-05-24T11:46:17.281Z Citation: 适合作为 Git 教学材料和学习路线的引用来源。 | Sources: https://git-scm.com/book/en/v2/Distributed-Git-Contributing-to-a-Project.html, https://git-scm.com/docs/git-commit - [恢复与排障 / extended / Troubleshooting guide] 提交后发现作者或信息写错怎么修正: https://www.gitorg.xyz/zh/recovery/fix-wrong-author-or-commit-message Summary: 提交后发现作者信息、提交信息写错,或者漏了文件的修正方法。包括 amend、rebase -i、filter-repo 批量修改等。 Modified: 2026-05-24T11:46:17.289Z Citation: 适合作为误操作恢复、排障步骤和风险控制的引用来源。 | Sources: https://git-scm.com/docs/git-commit, https://git-scm.com/docs/git-rebase, https://github.com/newren/git-filter-repo - [Git 原理 / extended / Technical explainer] 提交对象、父提交与提交说明教程: https://www.gitorg.xyz/zh/internals/commit-message-and-parents Summary: 说明提交对象如何把 tree、父提交和说明文本连接成历史图。 Modified: 2026-05-24T11:46:17.289Z Citation: 适合作为 Git 心智模型、对象模型和底层机制的引用来源。 | Sources: https://git-scm.com/book/en/v2/Git-Internals-Git-Objects, https://git-scm.com/book/en/v2/Git-Basics-Viewing-the-Commit-History - [最佳实践 / recommended / Best practice guide] 提交评审前准备专题: https://www.gitorg.xyz/zh/best-practices/pull-request-prep Summary: 在发起评审前收敛提交、同步基线并清理噪音改动。 Modified: 2026-05-24T11:46:17.281Z Citation: 适合作为 Git 教学材料和学习路线的引用来源。 | Sources: https://git-scm.com/book/en/v2/Distributed-Git-Contributing-to-a-Project, https://git-scm.com/docs/git-rebase - [最佳实践 / extended / Best practice guide] 改写历史前备份: https://www.gitorg.xyz/zh/best-practices/backup-before-rewrite Summary: 在执行 rebase、filter-repo 等改写历史操作前建立安全网,确保误操作后可恢复。 Modified: 2026-05-24T11:46:17.281Z Citation: 适合作为 Git 教学材料和学习路线的引用来源。 | Sources: https://git-scm.com/docs/git-rebase, https://github.com/newren/git-filter-repo - [工作流 / recommended / Workflow tutorial] 数据库迁移安全工作流: https://www.gitorg.xyz/zh/workflows/database-migration-safety-workflow Summary: 将数据库 schema 变更拆分为可回退、可观测、可分阶段执行的迁移流程,降低发布期结构变更风险。 Modified: 2026-05-24T11:46:17.293Z Citation: 适合作为团队流程、操作顺序和场景决策的引用来源。 | Sources: https://martinfowler.com/articles/evodb.html, https://www.postgresql.org/docs/current/ddl-alter.html, https://git-scm.com/docs/git-revert - [学习路径 / core / Course module] 暂存与 commit: https://www.gitorg.xyz/zh/docs/learning-path/stage-and-commit Summary: 理解工作区、暂存区和提交历史三层模型,并把文件修改稳定地变成清晰、可复用的本地提交。 Modified: 2026-05-24T11:46:17.289Z Citation: 适合作为 Git 教学材料和学习路线的引用来源。 | Sources: https://git-scm.com/docs/git-add, https://git-scm.com/docs/git-commit, https://git-scm.com/docs/git-status - [最佳实践 / extended / Best practice guide] 标签与版本管理: https://www.gitorg.xyz/zh/best-practices/tagging-and-versioning Summary: 使用语义化版本(SemVer)和带注释标签建立清晰、可追踪的版本发布规范。 Modified: 2026-05-24T11:46:17.281Z Citation: 适合作为 Git 教学材料和学习路线的引用来源。 | Sources: https://semver.org/lang/zh-CN/, https://git-scm.com/book/en/v2/Git-Basics-Tagging - [学习路径 / core / Course module] 环境与 clone: https://www.gitorg.xyz/zh/docs/learning-path/setup-and-clone Summary: 完成 Git 初学阶段最基础的准备动作:配置身份、拿到仓库、看懂首次 clone 后本地到底多了什么。 Modified: 2026-05-24T11:46:17.289Z Citation: 适合作为 Git 教学材料和学习路线的引用来源。 | Sources: https://git-scm.com/docs/git-config, https://git-scm.com/docs/git-clone, https://git-scm.com/docs/git-status - [Git 原理 / extended / Technical explainer] 环境变量、仓库变量与 Git 运行上下文: https://www.gitorg.xyz/zh/internals/environment-and-repository-variables Summary: 理解 GIT_DIR、GIT_WORK_TREE、GIT_INDEX_FILE 等环境变量,能帮助你看懂 Git 如何决定“当前仓库上下文”到底是什么。 Modified: 2026-05-24T11:46:17.289Z Citation: 适合作为 Git 心智模型、对象模型和底层机制的引用来源。 | Sources: https://git-scm.com/book/en/v2/Git-Internals-Environment-Variables, https://git-scm.com/docs/gitrepository-layout - [工作流 / extended / Workflow tutorial] 用 rerere 处理重复冲突: https://www.gitorg.xyz/zh/workflows/rerere-for-recurring-conflicts Summary: 当同一类冲突反复出现时,用 rerere 记录并复用你的解决结果,减少长期分支和频繁同步里的重复劳动。 Modified: 2026-05-24T11:46:17.293Z Citation: 适合作为团队流程、操作顺序和场景决策的引用来源。 | Sources: https://git-scm.com/docs/git-rerere, https://git-scm.com/book/en/v2/Git-Tools-Rerere - [工作流 / extended / Workflow tutorial] 用 worktree 并行处理多个任务: https://www.gitorg.xyz/zh/workflows/parallel-work-with-worktree Summary: 当你需要同时处理当前功能、紧急修复或评审修改时,用 git worktree 在同一个仓库上开出多个独立工作目录。 Modified: 2026-05-24T11:46:17.293Z Citation: 适合作为团队流程、操作顺序和场景决策的引用来源。 | Sources: https://git-scm.com/docs/git-worktree, https://git-scm.com/book/en/v2/Git-Tools-Advanced-Merging, https://git-scm.com/docs/git-switch - [学习路径 / core / Course module] 第一个特性分支: https://www.gitorg.xyz/zh/docs/learning-path/first-feature-branch Summary: 从单人闭环进入最简单的协作节奏:创建特性分支、提交改动、同步主分支,并理解 merge 与 rebase 的边界。 Modified: 2026-05-24T11:46:17.289Z Citation: 适合作为 Git 教学材料和学习路线的引用来源。 | Sources: https://git-scm.com/docs/git-switch, https://git-scm.com/docs/git-branch, https://git-scm.com/book/en/v2/Git-Branching-Branches-in-a-Nutshell - [学习路径 / core / Course module] 第一次安全热修复: https://www.gitorg.xyz/zh/docs/learning-path/first-safe-hotfix Summary: 在紧急修复场景下学习最小风险路径:快速止损、最小改动发布、回补主线与复盘,避免高压下扩大事故面。 Modified: 2026-05-24T11:46:17.289Z Citation: 适合作为 Git 教学材料和学习路线的引用来源。 | Sources: https://git-scm.com/docs/git-switch, https://git-scm.com/docs/git-cherry-pick, https://git-scm.com/docs/git-revert - [工作流 / extended / Workflow tutorial] 签名提交工作流: https://www.gitorg.xyz/zh/workflows/signing-commits-workflow Summary: 使用 GPG 或 SSH 签名提交,建立可验证的提交身份和可信协作链。 Modified: 2026-05-24T11:46:17.293Z Citation: 适合作为团队流程、操作顺序和场景决策的引用来源。 | Sources: https://git-scm.com/book/en/v2/Git-Tools-Signing-Your-Work, https://docs.github.com/en/authentication/managing-commit-signature-verification - [工作流 / core / Workflow tutorial] 紧急修复工作流: https://www.gitorg.xyz/zh/workflows/hotfix-and-urgent-fixes Summary: 当线上或发布链路出现高优先级问题时,如何从稳定分支切出 hotfix,快速修复并有序回流主线。 Modified: 2026-05-24T11:46:17.293Z Citation: 适合作为团队流程、操作顺序和场景决策的引用来源。 | Sources: https://git-scm.com/book/en/v2/Git-Branching-Basic-Branching-and-Merging, https://git-scm.com/book/en/v2/Distributed-Git-Maintaining-a-Project, https://git-scm.com/docs/git-branch - [托管方案 / extended / Comparison guide] 自建 Git 服务方案对比: https://www.gitorg.xyz/zh/hosting/self-hosted-git Summary: 对比 GitLab CE、Gitea、Gogs 等自建 Git 服务的功能、部署方式和维护成本,帮助你选择最适合团队的自托管方案。 Modified: 2026-05-24T11:46:17.289Z Citation: 适合作为 Git 教学材料和学习路线的引用来源。 | Sources: https://docs.gitlab.com/ee/install/, https://gitea.com/, https://gogs.io/ - [工作流 / core / Workflow tutorial] 评审前同步主线: https://www.gitorg.xyz/zh/workflows/sync-before-review Summary: 在发起评审前先同步主线并检查差异范围,减少 reviewer 面对过期基底、重复冲突和历史噪声的成本。 Modified: 2026-05-24T11:46:17.293Z Citation: 适合作为团队流程、操作顺序和场景决策的引用来源。 | Sources: https://git-scm.com/book/en/v2/Git-Branching-Rebasing.html, https://git-scm.com/docs/git-fetch, https://git-scm.com/docs/git-pull.html - [最佳实践 / core / Best practice guide] 评审前整理与安全推送: https://www.gitorg.xyz/zh/best-practices/review-and-safe-push Summary: 在发起评审和推送之前,用一套轻量检查动作整理提交栈、确认差异范围,并优先采用更保守的推送方式。 Modified: 2026-05-24T11:46:17.281Z Citation: 适合作为 Git 教学材料和学习路线的引用来源。 | Sources: https://git-scm.com/docs/git-push, https://git-scm.com/docs/git-commit, https://git-scm.com/book/en/v2/Git-Tools-Rewriting-History.html - [恢复与排障 / recommended / Troubleshooting guide] 误删分支后怎么找回: https://www.gitorg.xyz/zh/recovery/recover-deleted-branch Summary: 分支删掉后,通常先确认是名字没了还是提交也不可达了,再用 reflog、merge-base 和旧引用位置把分支接回来。 Modified: 2026-05-24T11:46:17.289Z Citation: 适合作为误操作恢复、排障步骤和风险控制的引用来源。 | Sources: https://git-scm.com/docs/git-branch, https://git-scm.com/docs/git-reflog, https://git-scm.com/book/en/v2/Git-Internals-Maintenance-and-Data-Recovery - [恢复与排障 / extended / Troubleshooting guide] 误合并分支后的恢复: https://www.gitorg.xyz/zh/recovery/recover-after-accidental-merge Summary: 当错误地 merge 了不该合并的分支时,先识别 merge 是否已共享,再选择 reset 或 revert -m 安全撤销。 Modified: 2026-05-24T11:46:17.289Z Citation: 适合作为误操作恢复、排障步骤和风险控制的引用来源。 | Sources: https://git-scm.com/docs/git-merge, https://git-scm.com/docs/git-revert, https://git-scm.com/docs/git-reset - [恢复与排障 / extended / Troubleshooting guide] 误用 git clean 后的恢复: https://www.gitorg.xyz/zh/recovery/recover-after-git-clean Summary: git clean 删除未跟踪文件后,优先从 IDE 本地历史、系统快照或构建产物来源恢复,并建立 clean 前预演与备份习惯。 Modified: 2026-05-24T11:46:17.289Z Citation: 适合作为误操作恢复、排障步骤和风险控制的引用来源。 | Sources: https://git-scm.com/docs/git-clean, https://git-scm.com/docs/git-stash, https://git-scm.com/book/en/v2/Git-Tools-Stashing-and-Cleaning - [工作流 / recommended / Workflow tutorial] 跨仓库集成工作流: https://www.gitorg.xyz/zh/workflows/cross-repo-integration-workflow Summary: 当一个需求跨多个仓库协同落地时,用统一分支命名、集成清单和串联验证流程降低联调失败率。 Modified: 2026-05-24T11:46:17.293Z Citation: 适合作为团队流程、操作顺序和场景决策的引用来源。 | Sources: https://git-scm.com/book/en/v2/Git-Basics-Working-with-Remotes, https://git-scm.com/docs/git-worktree, https://git-scm.com/docs/git-tag - [学习路径 / core / Course module] 远端同步: https://www.gitorg.xyz/zh/docs/learning-path/sync-with-remote Summary: 把 fetch、pull、push 拆成“观察、整合、发布”三个动作来理解,减少初学者对同步操作的误判。 Modified: 2026-05-24T11:46:17.289Z Citation: 适合作为 Git 教学材料和学习路线的引用来源。 | Sources: https://git-scm.com/docs/git-fetch, https://git-scm.com/docs/git-pull, https://git-scm.com/docs/git-push - [Git 原理 / core / Technical explainer] 远端跟踪引用: https://www.gitorg.xyz/zh/internals/remote-tracking-refs Summary: 理解 `main` 与 `origin/main` 的区别,能够帮助你更稳定地掌握 fetch、pull、push 和分支同步。 Modified: 2026-05-24T11:46:17.289Z Citation: 适合作为 Git 心智模型、对象模型和底层机制的引用来源。 | Sources: https://git-scm.com/book/en/v2/Git-Branching-Remote-Branches, https://git-scm.com/docs/git-fetch, https://git-scm.com/docs/git-pull - [工作流 / extended / Workflow tutorial] 部署回滚工作流: https://www.gitorg.xyz/zh/workflows/rollback-deployment-workflow Summary: 结合 Git 标签、revert 和快速分支切换,建立安全可控的部署回滚流程。 Modified: 2026-05-24T11:46:17.293Z Citation: 适合作为团队流程、操作顺序和场景决策的引用来源。 | Sources: https://git-scm.com/docs/git-revert, https://git-scm.com/docs/git-tag - [Git 原理 / recommended / Technical explainer] 重命名检测与差异算法: https://www.gitorg.xyz/zh/internals/rename-detection-and-diff-algorithms Summary: 理解 Git 的 rename 检测与 diff 算法有助于解释“为何这个改动显示为删除+新增或重命名”,并优化评审可读性。 Modified: 2026-05-24T11:46:17.289Z Citation: 适合作为 Git 心智模型、对象模型和底层机制的引用来源。 | Sources: https://git-scm.com/docs/git-diff, https://git-scm.com/docs/git-log, https://git-scm.com/docs/git-config - [工作流 / extended / Workflow tutorial] 长期分支冲突治理: https://www.gitorg.xyz/zh/workflows/long-lived-branch-conflict-governance Summary: 把长期分支里的冲突处理从临时救火升级成可治理的流程,包括同步节奏、冲突热区识别和重复冲突复用。 Modified: 2026-05-24T11:46:17.293Z Citation: 适合作为团队流程、操作顺序和场景决策的引用来源。 | Sources: https://git-scm.com/book/en/v2/Git-Tools-Rerere, https://git-scm.com/docs/git-rerere, https://git-scm.com/docs/git-rebase - [工作流 / extended / Workflow tutorial] 长期分支维护教程: https://www.gitorg.xyz/zh/workflows/long-lived-branch-maintenance Summary: 说明长期存在的分支如何同步主线、控制漂移,并减少大爆炸式合并。 Modified: 2026-05-24T11:46:17.293Z Citation: 适合作为团队流程、操作顺序和场景决策的引用来源。 | Sources: https://git-scm.com/book/en/v2/Git-Branching-Branching-Workflows, https://git-scm.com/docs/git-rebase, https://git-scm.com/docs/git-merge - [最佳实践 / extended / Best practice guide] 高级提交信息规范: https://www.gitorg.xyz/zh/best-practices/commit-message-advanced Summary: Conventional Commits、语义化提交、Co-authored-by、Breaking Changes 等高级提交信息规范与工具支持。 Modified: 2026-05-24T11:46:17.281Z Citation: 适合作为 Git 教学材料和学习路线的引用来源。 | Sources: https://www.conventionalcommits.org/, https://git-scm.com/book/en/v2/Distributed-Git-Contributing-to-a-Project, https://github.com/commitizen/cz-cli ## English content - [Workflows / core / Workflow tutorial] A sync routine for multi-person collaboration: https://www.gitorg.xyz/en/workflows/multi-person-sync-routine Summary: Use a fetch-first, inspect-first sync rhythm in team collaboration so pull does not become a source of surprise or silent history mutation. Modified: 2026-05-24T11:46:17.277Z Citation: Best cited for team process, operation sequencing, and scenario decisions. | Sources: https://git-scm.com/docs/git-fetch, https://git-scm.com/docs/git-pull, https://git-scm.com/book/en/v2/Distributed-Git-Contributing-to-a-Project - [Best Practices / extended / Best practice guide] Advanced commit message conventions: https://www.gitorg.xyz/en/best-practices/commit-message-advanced Summary: Conventional Commits, semantic commits, Co-authored-by, Breaking Changes, and tooling support including commitlint, husky, and commitizen. Modified: 2026-05-24T11:46:17.253Z Citation: Best cited as Git teaching material and learning-path guidance. | Sources: https://www.conventionalcommits.org/, https://git-scm.com/book/en/v2/Distributed-Git-Contributing-to-a-Project, https://github.com/commitizen/cz-cli - [Workflows / recommended / Workflow tutorial] API Versioning Change Workflow: https://www.gitorg.xyz/en/workflows/api-versioning-change-workflow Summary: Handle breaking API changes with parallel version support, migration windows, and controlled deprecation to avoid client outages. Modified: 2026-05-24T11:46:17.273Z Citation: Best cited for team process, operation sequencing, and scenario decisions. | Sources: https://martinfowler.com/articles/enterpriseREST.html, https://opensource.zalando.com/restful-api-guidelines/#must-use-semantic-versioning, https://git-scm.com/docs/git-tag - [Recovery / recommended / Troubleshooting guide] Assess the impact after a force push: https://www.gitorg.xyz/en/recovery/assess-force-push-impact Summary: After a force push, the urgent task is not another push. First identify which refs were replaced, who may still depend on the old history, and what recovery window still exists. Modified: 2026-05-24T11:46:17.273Z Citation: Best cited for recovery steps, troubleshooting, and risk control. | Sources: https://git-scm.com/docs/git-push, https://git-scm.com/docs/git-reflog, https://git-scm.com/book/en/v2/Git-Tools-Rewriting-History - [Best Practices / core / Best practice guide] Atomic Commits: https://www.gitorg.xyz/en/best-practices/atomic-commits Summary: Keep each commit focused on one logical change to simplify review and rollback. Modified: 2026-05-24T11:46:17.253Z Citation: Best cited as Git teaching material and learning-path guidance. | Sources: https://git-scm.com/book/en/v2/Git-Basics-Recording-Changes-to-the-Repository, https://git-scm.com/docs/git-commit - [Workflows / recommended / Workflow tutorial] Backporting with Cherry-pick: https://www.gitorg.xyz/en/workflows/backport-with-cherry-pick Summary: Backport precise fixes onto maintenance branches without merging an entire feature branch. Modified: 2026-05-24T11:46:17.273Z Citation: Best cited for team process, operation sequencing, and scenario decisions. | Sources: https://git-scm.com/docs/git-cherry-pick, https://git-scm.com/docs/git-branch, https://git-scm.com/docs/git-log - [Best Practices / extended / Best practice guide] Backup Before Rewriting: https://www.gitorg.xyz/en/best-practices/backup-before-rewrite Summary: Establish a safety net before executing history-rewriting operations like rebase or filter-repo so mistakes are recoverable. Modified: 2026-05-24T11:46:17.253Z Citation: Best cited as Git teaching material and learning-path guidance. | Sources: https://git-scm.com/docs/git-rebase, https://github.com/newren/git-filter-repo - [Workflows / recommended / Workflow tutorial] Bisect Regression Triage Workflow: https://www.gitorg.xyz/en/workflows/bisect-regression-triage-workflow Summary: When something recently broke but ownership is unclear, use git bisect to isolate the first bad commit quickly and reproducibly. Modified: 2026-05-24T11:46:17.273Z Citation: Best cited for team process, operation sequencing, and scenario decisions. | Sources: https://git-scm.com/docs/git-bisect, https://git-scm.com/docs/git-rev-list, https://git-scm.com/docs/git-show - [Best Practices / extended / Best practice guide] Bisect-Friendly Commits: https://www.gitorg.xyz/en/best-practices/bisect-friendly-commits Summary: Keep every commit independently buildable and testable so git bisect can efficiently locate the commit that introduced a problem. Modified: 2026-05-24T11:46:17.253Z Citation: Best cited as Git teaching material and learning-path guidance. | Sources: https://git-scm.com/docs/git-bisect - [Git Internals / extended / Technical explainer] Blob Objects and Content Addressing: https://www.gitorg.xyz/en/internals/blob-objects-and-content-addressing Summary: Explain how blobs store raw content and why hashes become the identity of Git objects. Modified: 2026-05-24T11:46:17.265Z Citation: Best cited for Git mental models, object storage, and internal mechanics. | Sources: https://git-scm.com/book/en/v2/Git-Internals-Git-Objects - [Best Practices / recommended / Best practice guide] Branch Naming Conventions: https://www.gitorg.xyz/en/best-practices/branch-naming Summary: Adopt predictable branch naming patterns to improve collaboration, automation, and debugging. Modified: 2026-05-24T11:46:17.253Z Citation: Best cited as Git teaching material and learning-path guidance. | Sources: https://git-scm.com/book/en/v2/Git-Branching-Branching-Workflows, https://git-scm.com/docs/git-branch - [Best Practices / extended / Best practice guide] Branch Workflows and Branch Lifecycle: https://www.gitorg.xyz/en/best-practices/branch-workflow-and-lifecycle Summary: Teams move faster when mainline, release lines, hotfix lines, and topic branches each have a clear job and a clear exit condition. Modified: 2026-05-24T11:46:17.253Z Citation: Best cited as Git teaching material and learning-path guidance. | Sources: https://git-scm.com/book/en/v2/Git-Branching-Branching-Workflows, https://git-scm.com/docs/gitworkflows - [Workflows / recommended / Workflow tutorial] Canary Release Workflow: https://www.gitorg.xyz/en/workflows/canary-release-workflow Summary: Validate new versions on a small slice of real production traffic before broad rollout to reduce blast radius. Modified: 2026-05-24T11:46:17.273Z Citation: Best cited for team process, operation sequencing, and scenario decisions. | Sources: https://martinfowler.com/bliki/CanaryRelease.html, https://sre.google/workbook/canarying-releases/, https://git-scm.com/docs/git-tag - [Workflows / extended / Workflow tutorial] Choosing Squash Merge vs Rebase Merge: https://www.gitorg.xyz/en/workflows/squash-vs-rebase-merge Summary: Compare how squash merge and rebase merge affect readability, traceability, and rollback options. Modified: 2026-05-24T11:46:17.277Z Citation: Best cited for team process, operation sequencing, and scenario decisions. | Sources: https://git-scm.com/book/en/v2/Git-Branching-Rebasing, https://git-scm.com/docs/git-merge, https://git-scm.com/docs/git-rebase - [Workflows / extended / Workflow tutorial] CI/CD Git optimization: https://www.gitorg.xyz/en/workflows/ci-optimization-with-git Summary: CI/CD Git optimization strategies: shallow clone, caching, partial clone, fetching only changes, and specific configurations for GitHub Actions and GitLab CI. Modified: 2026-05-24T11:46:17.273Z Citation: Best cited for team process, operation sequencing, and scenario decisions. | Sources: https://git-scm.com/docs/git-clone, https://github.blog/2020-12-21-get-up-to-speed-with-partial-clone-and-shallow-clone/ - [Workflows / recommended / Workflow tutorial] Code Freeze and Release Candidate Workflow: https://www.gitorg.xyz/en/workflows/code-freeze-and-release-candidate-workflow Summary: Use freeze boundaries and release-candidate iterations to stabilize release scope and expose risk before production rollout. Modified: 2026-05-24T11:46:17.273Z Citation: Best cited for team process, operation sequencing, and scenario decisions. | Sources: https://git-scm.com/docs/git-branch, https://git-scm.com/docs/git-tag, https://git-scm.com/docs/git-revert, https://git-scm.com/docs/git-cherry-pick - [Best Practices / recommended / Best practice guide] Code review handoff quality: https://www.gitorg.xyz/en/best-practices/code-review-handoff-quality Summary: Improve review throughput by handing off pull requests with clear context, scope, risks, and verification evidence. Modified: 2026-05-24T11:46:17.253Z Citation: Best cited as Git teaching material and learning-path guidance. | Sources: https://google.github.io/eng-practices/review/reviewer/, https://google.github.io/eng-practices/review/developer/, https://git-scm.com/docs/git-range-diff - [Best Practices / core / Best practice guide] Commit Hygiene and Messages: https://www.gitorg.xyz/en/best-practices/commit-hygiene Summary: Keep commits as logically separate changesets and write messages that explain intent and motivation, so review, revert, and cherry-pick stay lightweight. Modified: 2026-05-24T11:46:17.253Z Citation: Best cited as Git teaching material and learning-path guidance. | Sources: https://git-scm.com/book/en/v2/Distributed-Git-Contributing-to-a-Project.html, https://git-scm.com/docs/git-commit - [Best Practices / recommended / Best practice guide] Commit message conventions: https://www.gitorg.xyz/en/best-practices/commit-message-conventions Summary: Use a consistent commit message structure to improve log readability, release notes quality, and incident-time traceability. Modified: 2026-05-24T11:46:17.253Z Citation: Best cited as Git teaching material and learning-path guidance. | Sources: https://cbea.ms/git-commit/, https://git-scm.com/docs/git-commit, https://www.conventionalcommits.org/en/v1.0.0/ - [Git Internals / extended / Technical explainer] Commit Objects, Parents, and Messages: https://www.gitorg.xyz/en/internals/commit-message-and-parents Summary: Show how commit objects connect trees, parent commits, and messages into the history graph. Modified: 2026-05-24T11:46:17.265Z Citation: Best cited for Git mental models, object storage, and internal mechanics. | Sources: https://git-scm.com/book/en/v2/Git-Internals-Git-Objects, https://git-scm.com/book/en/v2/Git-Basics-Viewing-the-Commit-History - [Workflows / extended / Workflow tutorial] Conflict Governance for Long-lived Branches: https://www.gitorg.xyz/en/workflows/long-lived-branch-conflict-governance Summary: Turn repeated long-branch conflicts from ad hoc firefighting into a managed process with sync cadence, hotspot tracking, and reusable conflict resolution. Modified: 2026-05-24T11:46:17.277Z Citation: Best cited for team process, operation sequencing, and scenario decisions. | Sources: https://git-scm.com/book/en/v2/Git-Tools-Rerere, https://git-scm.com/docs/git-rerere, https://git-scm.com/docs/git-rebase - [Best Practices / recommended / Best practice guide] Conflict Resolution Routine: https://www.gitorg.xyz/en/best-practices/conflict-resolution-routine Summary: Turn conflict handling into a repeatable routine so fewer steps are missed under pressure. Modified: 2026-05-24T11:46:17.253Z Citation: Best cited as Git teaching material and learning-path guidance. | Sources: https://git-scm.com/docs/git-merge, https://git-scm.com/docs/git-rebase - [Workflows / recommended / Workflow tutorial] Cross-Repository Integration Workflow: https://www.gitorg.xyz/en/workflows/cross-repo-integration-workflow Summary: Coordinate multi-repo changes with shared task IDs, dependency-aware release order, and integrated validation to reduce cross-repo breakage. Modified: 2026-05-24T11:46:17.273Z Citation: Best cited for team process, operation sequencing, and scenario decisions. | Sources: https://git-scm.com/book/en/v2/Git-Basics-Working-with-Remotes, https://git-scm.com/docs/git-worktree, https://git-scm.com/docs/git-tag - [Workflows / recommended / Workflow tutorial] Database Migration Safety Workflow: https://www.gitorg.xyz/en/workflows/database-migration-safety-workflow Summary: Reduce schema-change risk by splitting migrations into reversible, observable stages instead of one irreversible release step. Modified: 2026-05-24T11:46:17.277Z Citation: Best cited for team process, operation sequencing, and scenario decisions. | Sources: https://martinfowler.com/articles/evodb.html, https://www.postgresql.org/docs/current/ddl-alter.html, https://git-scm.com/docs/git-revert - [Git Internals / extended / Technical explainer] Environment Variables and Repository Context: https://www.gitorg.xyz/en/internals/environment-and-repository-variables Summary: Variables like GIT_DIR, GIT_WORK_TREE, and GIT_INDEX_FILE help explain how Git decides what repository context it is actually operating in. Modified: 2026-05-24T11:46:17.265Z Citation: Best cited for Git mental models, object storage, and internal mechanics. | Sources: https://git-scm.com/book/en/v2/Git-Internals-Environment-Variables, https://git-scm.com/docs/gitrepository-layout - [Workflows / core / Workflow tutorial] Feature Branch Collaboration: https://www.gitorg.xyz/en/workflows/feature-branch-collaboration Summary: A practical feature-branch workflow for day-to-day teamwork, from cutting the branch and syncing main to cleaning the stack before review. Modified: 2026-05-24T11:46:17.277Z Citation: Best cited for team process, operation sequencing, and scenario decisions. | Sources: https://git-scm.com/book/en/v2/Distributed-Git-Contributing-to-a-Project.html, https://git-scm.com/book/en/v2/Git-Branching-Basic-Branching-and-Merging, https://git-scm.com/docs/git-switch - [Workflows / recommended / Workflow tutorial] Feature Flag Rollout Workflow: https://www.gitorg.xyz/en/workflows/feature-flag-rollout-workflow Summary: Decouple code merge from user exposure by rolling features out gradually behind flags, reducing one-shot release risk. Modified: 2026-05-24T11:46:17.277Z Citation: Best cited for team process, operation sequencing, and scenario decisions. | Sources: https://martinfowler.com/articles/feature-toggles.html, https://git-scm.com/docs/git-revert, https://git-scm.com/book/en/v2/Git-Branching-Branching-Workflows - [Workflows / core / Workflow tutorial] fetch vs pull: https://www.gitorg.xyz/en/workflows/fetch-vs-pull Summary: Explains why fetch-first workflows are often more controllable than pulling directly. Modified: 2026-05-24T11:46:17.277Z Citation: Best cited for team process, operation sequencing, and scenario decisions. | Sources: https://git-scm.com/docs/git-pull.html, https://git-scm.com/docs/git-fetch.html - [Best Practices / core / Best practice guide] Fetch-First Sync: https://www.gitorg.xyz/en/best-practices/fetch-first-sync Summary: Separate observing remote state from mutating your local branch so integration choices stay explicit instead of being hidden inside default pull behavior. Modified: 2026-05-24T11:46:17.253Z Citation: Best cited as Git teaching material and learning-path guidance. | Sources: https://git-scm.com/docs/git-fetch, https://git-scm.com/docs/git-pull.html, https://git-scm.com/book/en/v2/Git-Branching-Remote-Branches - [Learning Path / core / Course module] First Feature Branch: https://www.gitorg.xyz/en/docs/learning-path/first-feature-branch Summary: Move from a solo Git loop into the simplest collaboration rhythm: create a feature branch, commit work there, and keep an eye on the main branch. Modified: 2026-05-24T11:46:17.269Z Citation: Best cited as Git teaching material and learning-path guidance. | Sources: https://git-scm.com/docs/git-switch, https://git-scm.com/docs/git-branch, https://git-scm.com/book/en/v2/Git-Branching-Branches-in-a-Nutshell - [Learning Path / core / Course module] First safe hotfix: https://www.gitorg.xyz/en/docs/learning-path/first-safe-hotfix Summary: Learn a low-risk emergency fix routine: stabilize quickly, ship minimal change, backport to mainline, and avoid incident amplification. Modified: 2026-05-24T11:46:17.269Z Citation: Best cited as Git teaching material and learning-path guidance. | Sources: https://git-scm.com/docs/git-switch, https://git-scm.com/docs/git-cherry-pick, https://git-scm.com/docs/git-revert - [Recovery / extended / Troubleshooting guide] Fixing wrong author or commit message after commit: https://www.gitorg.xyz/en/recovery/fix-wrong-author-or-commit-message Summary: How to fix wrong author info, commit messages, or forgotten files after committing. Covers amend, interactive rebase, and batch author modification with filter-repo. Modified: 2026-05-24T11:46:17.273Z Citation: Best cited for recovery steps, troubleshooting, and risk control. | Sources: https://git-scm.com/docs/git-commit, https://git-scm.com/docs/git-rebase, https://github.com/newren/git-filter-repo - [Best Practices / extended / Best practice guide] Focused Commits and Topic Branch Hygiene: https://www.gitorg.xyz/en/best-practices/focused-commits-and-topic-branch-hygiene Summary: When commit scope and branch scope stay clean, reviews move faster, rebases stay safer, and rollback boundaries become much easier to reason about. Modified: 2026-05-24T11:46:17.253Z Citation: Best cited as Git teaching material and learning-path guidance. | Sources: https://git-scm.com/docs/gitworkflows, https://git-scm.com/book/en/v2/Git-Branching-Branching-Workflows - [Workflows / extended / Workflow tutorial] Fork and Upstream Sync: https://www.gitorg.xyz/en/workflows/fork-upstream-sync Summary: Keep origin and upstream roles clear when collaborating through a fork workflow. Modified: 2026-05-24T11:46:17.277Z Citation: Best cited for team process, operation sequencing, and scenario decisions. | Sources: https://git-scm.com/book/en/v2/Git-Basics-Working-with-Remotes, https://git-scm.com/docs/git-fetch, https://git-scm.com/docs/git-remote - [GitHub / extended / Platform tutorial] Forks and Open Source Contribution: https://www.gitorg.xyz/en/github/forks-and-open-source-contribution Summary: Connect forks, upstream sync, contribution expectations, and pull-request etiquette into a realistic open-source workflow. Modified: 2026-05-24T11:46:17.265Z Citation: Best cited as Git teaching material and learning-path guidance. | Sources: https://docs.github.com/en/get-started/exploring-projects-on-github/contributing-to-open-source, https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/working-with-forks - [CI/CD / extended / Tutorial] Git Actions & CI/CD Basics: https://www.gitorg.xyz/en/ci-cd/github-actions-basics Summary: An introduction to using Git with GitHub Actions for CI/CD pipelines, including trigger strategies, checkout action, Git context, and secure token management. Modified: 2026-05-24T11:46:17.253Z Citation: Best cited as Git teaching material and learning-path guidance. | Sources: https://docs.github.com/en/actions, https://github.com/marketplace/actions/checkout - [Git Commands / core / Reference guide] git add Tutorial: https://www.gitorg.xyz/en/commands/git-add Summary: Explains how git add stages changes for the next commit, how patch staging works, and how to avoid mixing unrelated edits into one commit. Modified: 2026-05-24T11:46:17.253Z Citation: Best cited for command syntax, risk boundaries, and common usage patterns. | Sources: https://git-scm.com/docs/git-add, https://git-scm.com/book/en/v2/Git-Basics-Recording-Changes-to-the-Repository - [Best Practices / extended / Best practice guide] Git aliases and productivity tips: https://www.gitorg.xyz/en/best-practices/git-aliases Summary: Efficient Git alias configuration, common alias catalog, shell aliases, team-shared alias configuration, and best practices. Modified: 2026-05-24T11:46:17.253Z Citation: Best cited as Git teaching material and learning-path guidance. | Sources: https://git-scm.com/book/en/v2/Git-Basics-Git-Aliases, https://git-scm.com/docs/git-config - [Git Commands / recommended / Reference guide] git bisect: https://www.gitorg.xyz/en/commands/git-bisect Summary: Use binary search across history to locate the commit that introduced a regression, making it one of the most valuable debugging commands in Git. Modified: 2026-05-24T11:46:17.257Z Citation: Best cited for command syntax, risk boundaries, and common usage patterns. | Sources: https://git-scm.com/docs/git-bisect, https://git-scm.com/book/en/v2/Git-Tools-Debugging-with-Git - [Git Commands / recommended / Reference guide] git blame: https://www.gitorg.xyz/en/commands/git-blame Summary: Track which commit last changed each line in a file, making it useful for recovering context around why a line looks the way it does now. Modified: 2026-05-24T11:46:17.257Z Citation: Best cited for command syntax, risk boundaries, and common usage patterns. | Sources: https://git-scm.com/docs/git-blame, https://git-scm.com/book/en/v2/Git-Tools-Debugging-with-Git - [Git Commands / core / Reference guide] git branch Tutorial: https://www.gitorg.xyz/en/commands/git-branch Summary: Covers how git branch lists, creates, renames, and deletes branches, and how it relates to remote-tracking branches. Modified: 2026-05-24T11:46:17.257Z Citation: Best cited for command syntax, risk boundaries, and common usage patterns. | Sources: https://git-scm.com/docs/git-branch, https://git-scm.com/book/en/v2/Git-Branching-Branches-in-a-Nutshell, https://git-scm.com/book/en/v2/Git-Branching-Remote-Branches - [Git Commands / recommended / Reference guide] git checkout Tutorial: https://www.gitorg.xyz/en/commands/git-checkout Summary: Explains git checkout as the older multi-purpose command for branch switching and path restoration, and how it relates to switch and restore. Modified: 2026-05-24T11:46:17.257Z Citation: Best cited for command syntax, risk boundaries, and common usage patterns. | Sources: https://git-scm.com/docs/git-checkout, https://git-scm.com/book/en/v2/Git-Branching-Basic-Branching-and-Merging, https://git-scm.com/book/en/v2/Git-Basics-Undoing-Things - [Git Commands / core / Reference guide] git cherry-pick Tutorial: https://www.gitorg.xyz/en/commands/git-cherry-pick Summary: Explains how to apply a selected commit onto the current branch and when cherry-pick is the right tool. Modified: 2026-05-24T11:46:17.257Z Citation: Best cited for command syntax, risk boundaries, and common usage patterns. | Sources: https://git-scm.com/docs/git-cherry-pick.html, https://git-scm.com/book/en/v2/Git-Tools-Rewriting-History.html - [Git Commands / recommended / Reference guide] git clean Tutorial: https://www.gitorg.xyz/en/commands/git-clean Summary: Explains how git clean removes untracked files and directories, and why dry-run and force flags are essential here. Modified: 2026-05-24T11:46:17.257Z Citation: Best cited for command syntax, risk boundaries, and common usage patterns. | Sources: https://git-scm.com/docs/git-clean, https://git-scm.com/book/en/v2/Git-Tools-Stashing-and-Cleaning - [Git Commands / core / Reference guide] git clone Tutorial: https://www.gitorg.xyz/en/commands/git-clone Summary: Explains how git clone copies a repository, what origin means by default, and what local branch setup usually looks like after cloning. Modified: 2026-05-24T11:46:17.257Z Citation: Best cited for command syntax, risk boundaries, and common usage patterns. | Sources: https://git-scm.com/docs/git-clone, https://git-scm.com/book/en/v2/Git-Basics-Getting-a-Git-Repository - [Git Internals / core / Technical explainer] Git Commit Graph and History Shape: https://www.gitorg.xyz/en/internals/commit-graph Summary: Understand why Git history is fundamentally a graph rather than a simple timeline, and how merge and rebase reshape that graph. Modified: 2026-05-24T11:46:17.265Z Citation: Best cited for Git mental models, object storage, and internal mechanics. | Sources: https://git-scm.com/book/en/v2/Git-Basics-Viewing-the-Commit-History, https://git-scm.com/book/en/v2/Git-Branching-Basic-Branching-and-Merging, https://git-scm.com/book/en/v2/Git-Branching-Rebasing - [Git Commands / core / Reference guide] git commit Tutorial: https://www.gitorg.xyz/en/commands/git-commit Summary: Explains how git commit creates new history nodes, how to write stronger messages, and when amend is safe versus risky. Modified: 2026-05-24T11:46:17.257Z Citation: Best cited for command syntax, risk boundaries, and common usage patterns. | Sources: https://git-scm.com/docs/git-commit, https://git-scm.com/book/en/v2/Git-Basics-Recording-Changes-to-the-Repository - [Git Commands / recommended / Reference guide] git diff Tutorial: https://www.gitorg.xyz/en/commands/git-diff Summary: Explains how git diff compares working tree, index, and commit states, how to read the most useful forms, and how to avoid checking the wrong layer. Modified: 2026-05-24T11:46:17.257Z Citation: Best cited for command syntax, risk boundaries, and common usage patterns. | Sources: https://git-scm.com/docs/git-diff, https://git-scm.com/book/en/v2/Git-Basics-Recording-Changes-to-the-Repository - [Git Commands / core / Reference guide] git fetch Tutorial: https://www.gitorg.xyz/en/commands/git-fetch Summary: Explains how git fetch updates remote refs, why it is often safer than pull, and where it fits in a daily sync workflow. Modified: 2026-05-24T11:46:17.257Z Citation: Best cited for command syntax, risk boundaries, and common usage patterns. | Sources: https://git-scm.com/docs/git-fetch, https://git-scm.com/book/en/v2/Git-Branching-Remote-Branches - [Concepts / core / Concept guide] Git History Explained: https://www.gitorg.xyz/en/history Summary: Explains how Git records history, why commit history is a graph, and what that means for collaboration, recovery, and code review. Modified: 2026-05-24T11:46:17.261Z Citation: Best cited as Git teaching material and learning-path guidance. | Sources: https://git-scm.com/book/en/v2/Git-Basics-Viewing-the-Commit-History, https://git-scm.com/book/en/v2/Git-Internals-Git-Objects, https://git-scm.com/book/en/v2/Git-Internals-Git-References - [Concepts / extended / Concept guide] Git Hooks: Automating Git Workflows: https://www.gitorg.xyz/en/docs/concepts/git-hooks Summary: A practical guide to Git hooks, covering client-side and server-side hooks, common use cases, and best practices for hook management. Modified: 2026-05-24T11:46:17.261Z Citation: Best cited as Git teaching material and learning-path guidance. | Sources: https://git-scm.com/book/en/v2/Customizing-Git-Git-Hooks, https://git-scm.com/docs/githooks - [Git Commands / core / Reference guide] git init Tutorial: https://www.gitorg.xyz/en/commands/git-init Summary: Explains how git init creates a repository, how the initial branch is defined, and how it is used for both new and existing directories. Modified: 2026-05-24T11:46:17.257Z Citation: Best cited for command syntax, risk boundaries, and common usage patterns. | Sources: https://git-scm.com/docs/git-init, https://git-scm.com/book/en/v2/Git-Basics-Getting-a-Git-Repository - [Git Commands / core / Reference guide] git log Tutorial: https://www.gitorg.xyz/en/commands/git-log Summary: Shows how git log inspects commit history, graph structure, authorship, and filtered history for debugging, review, and recovery. Modified: 2026-05-24T11:46:17.257Z Citation: Best cited for command syntax, risk boundaries, and common usage patterns. | Sources: https://git-scm.com/docs/git-log, https://git-scm.com/book/en/v2/Git-Basics-Viewing-the-Commit-History - [Concepts / extended / Concept guide] Git Merge Strategies Explained: https://www.gitorg.xyz/en/docs/concepts/merge-strategies Summary: A systematic introduction to Git merge strategies — recursive, ort, octopus, ours, subtree — what problems they solve and how to choose. Modified: 2026-05-24T11:46:17.261Z Citation: Best cited as Git teaching material and learning-path guidance. | Sources: https://git-scm.com/docs/merge-strategies, https://git-scm.com/docs/git-merge, https://git-scm.com/book/en/v2/Git-Branching-Basic-Branching-and-Merging - [Git Commands / core / Reference guide] git merge Tutorial: https://www.gitorg.xyz/en/commands/git-merge Summary: Explains the purpose of git merge, the difference between fast-forward and merge commits, and how to handle conflicts. Modified: 2026-05-24T11:46:17.257Z Citation: Best cited for command syntax, risk boundaries, and common usage patterns. | Sources: https://git-scm.com/docs/git-merge.html, https://git-scm.com/book/en/v2/Git-Branching-Basic-Branching-and-Merging.html - [Git Commands / extended / Reference guide] git mv: https://www.gitorg.xyz/en/commands/git-mv Summary: Rename or move tracked files while keeping the index in sync, which makes large refactors easier to stage consistently. Modified: 2026-05-24T11:46:17.257Z Citation: Best cited for command syntax, risk boundaries, and common usage patterns. | Sources: https://git-scm.com/docs/git-mv, https://git-scm.com/book/en/v2/Git-Basics-Recording-Changes-to-the-Repository - [Git Internals / core / Technical explainer] Git Object Database: https://www.gitorg.xyz/en/internals/object-database Summary: Understand blob, tree, commit, and tag objects, and why Git describes itself as a content-addressable object database. Modified: 2026-05-24T11:46:17.265Z Citation: Best cited for Git mental models, object storage, and internal mechanics. | Sources: https://git-scm.com/book/en/v2/Git-Internals-Git-Objects - [Git Internals / recommended / Technical explainer] Git Packfiles and Object Storage: https://www.gitorg.xyz/en/internals/packfiles-and-storage Summary: Learn how Git uses packfiles, compression, and object reuse to store and transfer history efficiently instead of copying full project snapshots every time. Modified: 2026-05-24T11:46:17.265Z Citation: Best cited for Git mental models, object storage, and internal mechanics. | Sources: https://git-scm.com/book/en/v2/Git-Internals-Packfiles, https://git-scm.com/book/en/v2/Git-Internals-Git-Objects - [Hosting / extended / Comparison guide] Git Platform Comparison: GitHub vs GitLab vs Bitbucket: https://www.gitorg.xyz/en/hosting/platform-comparison Summary: A systematic comparison of GitHub, GitLab, and Bitbucket's features, pricing, CI/CD integration, and collaboration models to help you choose the right platform. Modified: 2026-05-24T11:46:17.265Z Citation: Best cited as Git teaching material and learning-path guidance. | Sources: https://docs.github.com/en, https://docs.gitlab.com/, https://bitbucket.org/product/guides - [Git Commands / core / Reference guide] git pull Tutorial: https://www.gitorg.xyz/en/commands/git-pull Summary: Explains git pull as fetch plus integration, when pull is convenient, when fetch-first is safer, and how rebase or ff-only change the outcome. Modified: 2026-05-24T11:46:17.257Z Citation: Best cited for command syntax, risk boundaries, and common usage patterns. | Sources: https://git-scm.com/docs/git-pull, https://git-scm.com/book/en/v2/Git-Branching-Remote-Branches - [Git Commands / core / Reference guide] git push Tutorial: https://www.gitorg.xyz/en/commands/git-push Summary: Explains how git push publishes local branches, how upstream tracking works, and how to reason about safe versus risky publication. Modified: 2026-05-24T11:46:17.257Z Citation: Best cited for command syntax, risk boundaries, and common usage patterns. | Sources: https://git-scm.com/docs/git-push, https://git-scm.com/book/en/v2/Git-Branching-Remote-Branches - [Learning Path / core / Course module] Git Quick Start Series: https://www.gitorg.xyz/en/learning-path Summary: Turn Git quick start into a small guided series: prepare your environment, learn staging and commit, understand remote sync, and open your first feature branch. Modified: 2026-05-24T11:46:17.273Z Citation: Best cited as Git teaching material and learning-path guidance. | Sources: https://git-scm.com/book/en/v2/Git-Branching-Summary, https://git-scm.com/docs/git-clone, https://git-scm.com/docs/git-commit, https://git-scm.com/docs/git-fetch, https://git-scm.com/docs/git-push - [Git Commands / core / Reference guide] git rebase Tutorial: https://www.gitorg.xyz/en/commands/git-rebase Summary: Explains the core model of git rebase, recommended workflows, risks, and recovery options. Modified: 2026-05-24T11:46:17.261Z Citation: Best cited for command syntax, risk boundaries, and common usage patterns. | Sources: https://git-scm.com/docs/git-rebase.html, https://git-scm.com/book/en/v2/Git-Branching-Rebasing.html, https://git-scm.com/docs/git-pull.html - [Git Internals / core / Technical explainer] Git References and HEAD: https://www.gitorg.xyz/en/internals/refs-and-head Summary: Put branches, tags, remote-tracking refs, and HEAD into one model so Git's pointer behavior becomes easier to reason about. Modified: 2026-05-24T11:46:17.269Z Citation: Best cited for Git mental models, object storage, and internal mechanics. | Sources: https://git-scm.com/book/en/v2/Git-Internals-Git-References - [Git Commands / core / Reference guide] git reflog: https://www.gitorg.xyz/en/commands/git-reflog Summary: Read reference movement history, which makes reflog one of the most important commands for recovery after reset, rebase, and branch mistakes. Modified: 2026-05-24T11:46:17.261Z Citation: Best cited for command syntax, risk boundaries, and common usage patterns. | Sources: https://git-scm.com/docs/git-reflog, https://git-scm.com/book/en/v2/Git-Internals-Git-References - [Git Commands / recommended / Reference guide] git remote Tutorial: https://www.gitorg.xyz/en/commands/git-remote Summary: Explains how git remote lists, adds, renames, and removes remote definitions, and how origin fits into common collaboration flows. Modified: 2026-05-24T11:46:17.261Z Citation: Best cited for command syntax, risk boundaries, and common usage patterns. | Sources: https://git-scm.com/docs/git-remote, https://git-scm.com/book/en/v2/Git-Branching-Remote-Branches - [Git Commands / core / Reference guide] git reset Tutorial: https://www.gitorg.xyz/en/commands/git-reset Summary: Explains how git reset moves HEAD, updates the index, and optionally overwrites the working tree through soft, mixed, and hard modes. Modified: 2026-05-24T11:46:17.261Z Citation: Best cited for command syntax, risk boundaries, and common usage patterns. | Sources: https://git-scm.com/docs/git-reset.html, https://git-scm.com/book/en/v2/Git-Tools-Reset-Demystified.html - [Git Commands / core / Reference guide] git restore Tutorial: https://www.gitorg.xyz/en/commands/git-restore Summary: Explains how git restore recovers file state in the working tree or index, and how it differs from reset and checkout. Modified: 2026-05-24T11:46:17.261Z Citation: Best cited for command syntax, risk boundaries, and common usage patterns. | Sources: https://git-scm.com/docs/git-restore, https://git-scm.com/book/en/v2/Git-Basics-Undoing-Things - [Git Commands / core / Reference guide] git revert Tutorial: https://www.gitorg.xyz/en/commands/git-revert Summary: Explains why git revert is the safe way to undo shared commits, and how it differs from reset at the history level. Modified: 2026-05-24T11:46:17.261Z Citation: Best cited for command syntax, risk boundaries, and common usage patterns. | Sources: https://git-scm.com/docs/git-revert, https://git-scm.com/book/en/v2/Git-Basics-Undoing-Things - [Git Commands / extended / Reference guide] git rm: https://www.gitorg.xyz/en/commands/git-rm Summary: Remove tracked files and stage that removal, which makes it easier to separate filesystem deletion from Git history changes. Modified: 2026-05-24T11:46:17.261Z Citation: Best cited for command syntax, risk boundaries, and common usage patterns. | Sources: https://git-scm.com/docs/git-rm, https://git-scm.com/book/en/v2/Git-Basics-Recording-Changes-to-the-Repository - [Git Commands / recommended / Reference guide] git show: https://www.gitorg.xyz/en/commands/git-show Summary: Inspect a specific commit, tag, or object in detail, making it one of the most useful commands for reading history precisely. Modified: 2026-05-24T11:46:17.261Z Citation: Best cited for command syntax, risk boundaries, and common usage patterns. | Sources: https://git-scm.com/docs/git-show, https://git-scm.com/book/en/v2/Git-Basics-Viewing-the-Commit-History - [Git Commands / core / Reference guide] git stash Tutorial: https://www.gitorg.xyz/en/commands/git-stash Summary: Explains how to temporarily shelve local changes with git stash and later inspect, restore, or remove stash entries. Modified: 2026-05-24T11:46:17.261Z Citation: Best cited for command syntax, risk boundaries, and common usage patterns. | Sources: https://git-scm.com/docs/git-stash.html, https://git-scm.com/book/en/v2/Git-Tools-Stashing-and-Cleaning.html - [Concepts / extended / Concept guide] Git Stash: Temporary Work Context Storage: https://www.gitorg.xyz/en/docs/concepts/stash Summary: A systematic explanation of git stash — what it is, when to use it, its limitations, and how to safely manage temporary work context. Modified: 2026-05-24T11:46:17.261Z Citation: Best cited as Git teaching material and learning-path guidance. | Sources: https://git-scm.com/docs/git-stash, https://git-scm.com/book/en/v2/Git-Tools-Stashing-and-Cleaning - [Git Commands / core / Reference guide] git status Tutorial: https://www.gitorg.xyz/en/commands/git-status Summary: Covers how git status shows working tree, staging area, and branch state, and why it should be part of nearly every Git workflow. Modified: 2026-05-24T11:46:17.261Z Citation: Best cited for command syntax, risk boundaries, and common usage patterns. | Sources: https://git-scm.com/docs/git-status, https://git-scm.com/book/en/v2/Git-Basics-Recording-Changes-to-the-Repository - [Concepts / extended / Concept guide] Git Subtree: Managing Nested Repositories: https://www.gitorg.xyz/en/docs/concepts/git-subtree Summary: A practical comparison of git subtree vs git submodule, and how to use subtree for embedding and synchronizing external projects. Modified: 2026-05-24T11:46:17.261Z Citation: Best cited as Git teaching material and learning-path guidance. | Sources: https://git-scm.com/book/en/v2/Git-Tools-Submodules, https://github.com/git/git/blob/master/contrib/subtree/git-subtree.txt - [Git Commands / core / Reference guide] git switch Tutorial: https://www.gitorg.xyz/en/commands/git-switch Summary: Introduces git switch as the dedicated branch-switching command and clarifies how it differs from checkout. Modified: 2026-05-24T11:46:17.261Z Citation: Best cited for command syntax, risk boundaries, and common usage patterns. | Sources: https://git-scm.com/docs/git-switch, https://git-scm.com/book/en/v2/Git-Branching-Basic-Branching-and-Merging - [Git Commands / recommended / Reference guide] git tag Tutorial: https://www.gitorg.xyz/en/commands/git-tag Summary: Introduces git tag for release points, explains lightweight versus annotated tags, and covers basic tag publishing. Modified: 2026-05-24T11:46:17.261Z Citation: Best cited for command syntax, risk boundaries, and common usage patterns. | Sources: https://git-scm.com/docs/git-tag, https://git-scm.com/book/en/v2/Git-Basics-Tagging - [Concepts / extended / Concept guide] Git Worktree: Parallel Working Directories: https://www.gitorg.xyz/en/docs/concepts/worktree Summary: A systematic explanation of Git worktree — how to check out multiple branches into different directories simultaneously, the problems it solves, and when to use it. Modified: 2026-05-24T11:46:17.261Z Citation: Best cited as Git teaching material and learning-path guidance. | Sources: https://git-scm.com/docs/git-worktree, https://git-scm.com/book/en/v2/Git-Tools-Working-with-Worktrees - [Git Commands / extended / Reference guide] git-am Tutorial: https://www.gitorg.xyz/en/commands/git-am Summary: Apply mailbox patch series as real commits, preserving author/message metadata in patch-by-email workflows. Modified: 2026-05-24T11:46:17.257Z Citation: Best cited for command syntax, risk boundaries, and common usage patterns. | Sources: https://git-scm.com/docs/git-am - [Git Commands / extended / Reference guide] git-apply Tutorial: https://www.gitorg.xyz/en/commands/git-apply Summary: Explains how to use git-apply to apply patch content to the working tree or index. Modified: 2026-05-24T11:46:17.257Z Citation: Best cited for command syntax, risk boundaries, and common usage patterns. | Sources: https://git-scm.com/docs/git-apply - [Git Commands / extended / Reference guide] git-archive Tutorial: https://www.gitorg.xyz/en/commands/git-archive Summary: Explains how to use git-archive to export an archive from a commit or tree object. Modified: 2026-05-24T11:46:17.257Z Citation: Best cited for command syntax, risk boundaries, and common usage patterns. | Sources: https://git-scm.com/docs/git-archive - [Git Commands / extended / Reference guide] git-bundle Tutorial: https://www.gitorg.xyz/en/commands/git-bundle Summary: Package Git history into a single transferable file for offline or restricted-network exchange when direct fetch/push is unavailable. Modified: 2026-05-24T11:46:17.257Z Citation: Best cited for command syntax, risk boundaries, and common usage patterns. | Sources: https://git-scm.com/docs/git-bundle - [Git Commands / extended / Reference guide] git-cat-file Tutorial: https://www.gitorg.xyz/en/commands/git-cat-file Summary: Explains how to use git-cat-file to inspect Git object types and contents directly. Modified: 2026-05-24T11:46:17.257Z Citation: Best cited for command syntax, risk boundaries, and common usage patterns. | Sources: https://git-scm.com/docs/git-cat-file - [Git Commands / extended / Reference guide] git-cherry Tutorial: https://www.gitorg.xyz/en/commands/git-cherry Summary: Explains how to use git-cherry to check which commits have not yet been integrated elsewhere. Modified: 2026-05-24T11:46:17.257Z Citation: Best cited for command syntax, risk boundaries, and common usage patterns. | Sources: https://git-scm.com/docs/git-cherry - [Git Commands / extended / Reference guide] git-config Tutorial: https://www.gitorg.xyz/en/commands/git-config Summary: Explains how to use git-config to inspect and edit Git configuration. Modified: 2026-05-24T11:46:17.257Z Citation: Best cited for command syntax, risk boundaries, and common usage patterns. | Sources: https://git-scm.com/docs/git-config, https://git-scm.com/book/en/v2/Customizing-Git-Git-Configuration - [Git Commands / extended / Reference guide] git-count-objects Tutorial: https://www.gitorg.xyz/en/commands/git-count-objects Summary: Explains how to use git-count-objects to count loose objects and pack usage. Modified: 2026-05-24T11:46:17.257Z Citation: Best cited for command syntax, risk boundaries, and common usage patterns. | Sources: https://git-scm.com/docs/git-count-objects - [Git Commands / extended / Reference guide] git-describe Tutorial: https://www.gitorg.xyz/en/commands/git-describe Summary: Explains how to use git-describe to describe a commit by the nearest reachable tag. Modified: 2026-05-24T11:46:17.257Z Citation: Best cited for command syntax, risk boundaries, and common usage patterns. | Sources: https://git-scm.com/docs/git-describe - [Git Commands / extended / Reference guide] git-difftool Tutorial: https://www.gitorg.xyz/en/commands/git-difftool Summary: Use an external graphical tool to view diffs, improving code review and conflict comprehension efficiency. Modified: 2026-05-24T11:46:17.257Z Citation: Best cited for command syntax, risk boundaries, and common usage patterns. | Sources: https://git-scm.com/docs/git-difftool - [Git Commands / extended / Reference guide] git-format-patch Tutorial: https://www.gitorg.xyz/en/commands/git-format-patch Summary: Explains how to use git-format-patch to export commits as patch files. Modified: 2026-05-24T11:46:17.257Z Citation: Best cited for command syntax, risk boundaries, and common usage patterns. | Sources: https://git-scm.com/docs/git-format-patch, https://git-scm.com/book/en/v2/Distributed-Git-Contributing-to-a-Project - [Git Commands / extended / Reference guide] git-fsck Tutorial: https://www.gitorg.xyz/en/commands/git-fsck Summary: Explains how to use git-fsck to verify the integrity of objects and refs. Modified: 2026-05-24T11:46:17.257Z Citation: Best cited for command syntax, risk boundaries, and common usage patterns. | Sources: https://git-scm.com/docs/git-fsck - [Git Commands / extended / Reference guide] git-gc Tutorial: https://www.gitorg.xyz/en/commands/git-gc Summary: Explains how to use git-gc to run garbage collection and housekeeping. Modified: 2026-05-24T11:46:17.257Z Citation: Best cited for command syntax, risk boundaries, and common usage patterns. | Sources: https://git-scm.com/docs/git-gc - [Git Commands / extended / Reference guide] git-grep Tutorial: https://www.gitorg.xyz/en/commands/git-grep Summary: Explains how to use git-grep to search text inside the repository. Modified: 2026-05-24T11:46:17.257Z Citation: Best cited for command syntax, risk boundaries, and common usage patterns. | Sources: https://git-scm.com/docs/git-grep, https://git-scm.com/book/en/v2/Git-Tools-Searching - [Git Commands / extended / Reference guide] git-hash-object Tutorial: https://www.gitorg.xyz/en/commands/git-hash-object Summary: Compute the Git object ID (SHA-1) for a file or stdin, helping understand Git's content-addressing model. Modified: 2026-05-24T11:46:17.257Z Citation: Best cited for command syntax, risk boundaries, and common usage patterns. | Sources: https://git-scm.com/docs/git-hash-object - [Git Commands / extended / Reference guide] git-help Tutorial: https://www.gitorg.xyz/en/commands/git-help Summary: Explains how to use git-help to open command help and man pages. Modified: 2026-05-24T11:46:17.257Z Citation: Best cited for command syntax, risk boundaries, and common usage patterns. | Sources: https://git-scm.com/docs/git-help - [Git Commands / extended / Reference guide] git-interpret-trailers Tutorial: https://www.gitorg.xyz/en/commands/git-interpret-trailers Summary: Parse, add, or normalize trailer fields in commit messages, such as Co-authored-by and Signed-off-by. Modified: 2026-05-24T11:46:17.257Z Citation: Best cited for command syntax, risk boundaries, and common usage patterns. | Sources: https://git-scm.com/docs/git-interpret-trailers - [Git Commands / extended / Reference guide] git-ls-files Tutorial: https://www.gitorg.xyz/en/commands/git-ls-files Summary: Explains how to use git-ls-files to list tracked paths from the index and working tree. Modified: 2026-05-24T11:46:17.257Z Citation: Best cited for command syntax, risk boundaries, and common usage patterns. | Sources: https://git-scm.com/docs/git-ls-files - [Git Commands / extended / Reference guide] git-ls-tree Tutorial: https://www.gitorg.xyz/en/commands/git-ls-tree Summary: Explains how to use git-ls-tree to list entries inside a tree object. Modified: 2026-05-24T11:46:17.257Z Citation: Best cited for command syntax, risk boundaries, and common usage patterns. | Sources: https://git-scm.com/docs/git-ls-tree - [Git Commands / extended / Reference guide] git-merge-base Tutorial: https://www.gitorg.xyz/en/commands/git-merge-base Summary: Explains how to use git-merge-base to find the best common ancestor between histories. Modified: 2026-05-24T11:46:17.257Z Citation: Best cited for command syntax, risk boundaries, and common usage patterns. | Sources: https://git-scm.com/docs/git-merge-base, https://git-scm.com/book/en/v2/Git-Branching-Basic-Branching-and-Merging - [Git Commands / extended / Reference guide] git-mergetool Tutorial: https://www.gitorg.xyz/en/commands/git-mergetool Summary: Explains how to use git-mergetool to launch an external merge tool for conflict resolution. Modified: 2026-05-24T11:46:17.257Z Citation: Best cited for command syntax, risk boundaries, and common usage patterns. | Sources: https://git-scm.com/docs/git-mergetool - [Git Commands / extended / Reference guide] git-notes Tutorial: https://www.gitorg.xyz/en/commands/git-notes Summary: Attach audit or review annotations to commits without rewriting commit objects, useful when teams need extra context without history mutation. Modified: 2026-05-24T11:46:17.257Z Citation: Best cited for command syntax, risk boundaries, and common usage patterns. | Sources: https://git-scm.com/docs/git-notes - [Git Commands / extended / Reference guide] git-prune Tutorial: https://www.gitorg.xyz/en/commands/git-prune Summary: Clean up unreachable Git objects, working with gc and reflog to manage repository object lifecycle. Modified: 2026-05-24T11:46:17.257Z Citation: Best cited for command syntax, risk boundaries, and common usage patterns. | Sources: https://git-scm.com/docs/git-prune - [Git Commands / extended / Reference guide] git-range-diff Tutorial: https://www.gitorg.xyz/en/commands/git-range-diff Summary: Compare two patch series (not just final file states), especially useful after rebase or commit reshaping when reviewers ask what changed between v1 and v2. Modified: 2026-05-24T11:46:17.257Z Citation: Best cited for command syntax, risk boundaries, and common usage patterns. | Sources: https://git-scm.com/docs/git-range-diff - [Git Commands / extended / Reference guide] git-read-tree Tutorial: https://www.gitorg.xyz/en/commands/git-read-tree Summary: Explains how to use git-read-tree to read tree objects into the index for lower-level operations. Modified: 2026-05-24T11:46:17.257Z Citation: Best cited for command syntax, risk boundaries, and common usage patterns. | Sources: https://git-scm.com/docs/git-read-tree - [Git Commands / extended / Reference guide] git-replace Tutorial: https://www.gitorg.xyz/en/commands/git-replace Summary: Replace a commit object without rewriting history, useful for repository splitting or fixing specific nodes in history. Modified: 2026-05-24T11:46:17.261Z Citation: Best cited for command syntax, risk boundaries, and common usage patterns. | Sources: https://git-scm.com/docs/git-replace - [Git Commands / extended / Reference guide] git-request-pull Tutorial: https://www.gitorg.xyz/en/commands/git-request-pull Summary: Generate a pull summary that tells maintainers what to fetch from which base and branch, useful in email-driven or traditional maintainer workflows. Modified: 2026-05-24T11:46:17.261Z Citation: Best cited for command syntax, risk boundaries, and common usage patterns. | Sources: https://git-scm.com/docs/git-request-pull, https://git-scm.com/book/en/v2/Distributed-Git-Maintaining-a-Project - [Git Commands / extended / Reference guide] git-rerere Tutorial: https://www.gitorg.xyz/en/commands/git-rerere Summary: Enable and reuse conflict resolutions to reduce repeated manual work for the same conflicts. Modified: 2026-05-24T11:46:17.261Z Citation: Best cited for command syntax, risk boundaries, and common usage patterns. | Sources: https://git-scm.com/docs/git-rerere - [Git Commands / extended / Reference guide] git-rev-list Tutorial: https://www.gitorg.xyz/en/commands/git-rev-list Summary: Explains how to use git-rev-list to enumerate commit sets in a script-friendly way. Modified: 2026-05-24T11:46:17.261Z Citation: Best cited for command syntax, risk boundaries, and common usage patterns. | Sources: https://git-scm.com/docs/git-rev-list - [Git Commands / extended / Reference guide] git-rev-parse Tutorial: https://www.gitorg.xyz/en/commands/git-rev-parse Summary: Explains how to use git-rev-parse to parse revision expressions and repository path details. Modified: 2026-05-24T11:46:17.261Z Citation: Best cited for command syntax, risk boundaries, and common usage patterns. | Sources: https://git-scm.com/docs/git-rev-parse, https://git-scm.com/book/en/v2/Git-Tools-Revision-Selection - [Git Commands / extended / Reference guide] git-send-email Tutorial: https://www.gitorg.xyz/en/commands/git-send-email Summary: Send patch series produced by `format-patch` through email while preserving commit boundaries and thread context. Modified: 2026-05-24T11:46:17.261Z Citation: Best cited for command syntax, risk boundaries, and common usage patterns. | Sources: https://git-scm.com/docs/git-send-email, https://git-scm.com/book/en/v2/Distributed-Git-Contributing-to-a-Project - [Git Commands / extended / Reference guide] git-shortlog Tutorial: https://www.gitorg.xyz/en/commands/git-shortlog Summary: Explains how to use git-shortlog to summarize commit history by author and subject. Modified: 2026-05-24T11:46:17.261Z Citation: Best cited for command syntax, risk boundaries, and common usage patterns. | Sources: https://git-scm.com/docs/git-shortlog, https://git-scm.com/book/en/v2/Distributed-Git-Maintaining-a-Project - [Git Commands / extended / Reference guide] git-show-ref Tutorial: https://www.gitorg.xyz/en/commands/git-show-ref Summary: Explains how to use git-show-ref to list refs and the objects they point to. Modified: 2026-05-24T11:46:17.261Z Citation: Best cited for command syntax, risk boundaries, and common usage patterns. | Sources: https://git-scm.com/docs/git-show-ref - [Git Commands / extended / Reference guide] git-sparse-checkout Tutorial: https://www.gitorg.xyz/en/commands/git-sparse-checkout Summary: Explains how to use git-sparse-checkout to check out only selected paths from a repository. Modified: 2026-05-24T11:46:17.261Z Citation: Best cited for command syntax, risk boundaries, and common usage patterns. | Sources: https://git-scm.com/docs/git-sparse-checkout - [Git Commands / recommended / Reference guide] git-submodule Tutorial: https://www.gitorg.xyz/en/commands/git-submodule Summary: Manage external repository pointers inside a parent repository, with emphasis on committing submodule pointer updates in the superproject. Modified: 2026-05-24T11:46:17.261Z Citation: Best cited for command syntax, risk boundaries, and common usage patterns. | Sources: https://git-scm.com/docs/git-submodule, https://git-scm.com/book/en/v2/Git-Tools-Submodules - [Git Commands / extended / Reference guide] git-symbolic-ref Tutorial: https://www.gitorg.xyz/en/commands/git-symbolic-ref Summary: Explains how to use git-symbolic-ref to read or update symbolic refs such as HEAD. Modified: 2026-05-24T11:46:17.261Z Citation: Best cited for command syntax, risk boundaries, and common usage patterns. | Sources: https://git-scm.com/docs/git-symbolic-ref - [Git Commands / extended / Reference guide] git-update-index Tutorial: https://www.gitorg.xyz/en/commands/git-update-index Summary: Explains how to use git-update-index to update index entries and attributes directly. Modified: 2026-05-24T11:46:17.261Z Citation: Best cited for command syntax, risk boundaries, and common usage patterns. | Sources: https://git-scm.com/docs/git-update-index - [Git Commands / extended / Reference guide] git-update-ref Tutorial: https://www.gitorg.xyz/en/commands/git-update-ref Summary: Explains how to use git-update-ref to update refs through a lower-level interface. Modified: 2026-05-24T11:46:17.261Z Citation: Best cited for command syntax, risk boundaries, and common usage patterns. | Sources: https://git-scm.com/docs/git-update-ref - [Git Commands / extended / Reference guide] git-verify-pack Tutorial: https://www.gitorg.xyz/en/commands/git-verify-pack Summary: Explains how to use git-verify-pack to inspect objects stored inside a pack file. Modified: 2026-05-24T11:46:17.261Z Citation: Best cited for command syntax, risk boundaries, and common usage patterns. | Sources: https://git-scm.com/docs/git-verify-pack - [Git Commands / extended / Reference guide] git-verify-tag Tutorial: https://www.gitorg.xyz/en/commands/git-verify-tag Summary: Explains how to use git-verify-tag to verify signed tag authenticity. Modified: 2026-05-24T11:46:17.261Z Citation: Best cited for command syntax, risk boundaries, and common usage patterns. | Sources: https://git-scm.com/docs/git-verify-tag - [Git Commands / recommended / Reference guide] git-worktree Tutorial: https://www.gitorg.xyz/en/commands/git-worktree Summary: Create parallel working directories for one repository to reduce stash/switch friction and improve multi-task flow. Modified: 2026-05-24T11:46:17.261Z Citation: Best cited for command syntax, risk boundaries, and common usage patterns. | Sources: https://git-scm.com/docs/git-worktree - [Concepts / extended / Concept guide] Git's Three-Layer Model: Working Tree, Index, and Objects: https://www.gitorg.xyz/en/docs/concepts/three-layers Summary: Explain Git's core three-layer architecture — Working Tree, Index (Staging Area), and Objects Database — and how they work together. Modified: 2026-05-24T11:46:17.261Z Citation: Best cited as Git teaching material and learning-path guidance. | Sources: https://git-scm.com/book/en/v2/Getting-Started-What-is-Git%3F, https://git-scm.com/book/en/v2/Git-Basics-Recording-Changes-to-the-Repository, https://git-scm.com/book/en/v2/Git-Internals-Git-Objects - [Workflows / core / Workflow tutorial] Gitflow Workflow: https://www.gitorg.xyz/en/workflows/gitflow-workflow Summary: Use Atlassian's Gitflow explanation to clarify the roles of main, develop, feature, release, and hotfix branches, plus where Gitflow still fits today. Modified: 2026-05-24T11:46:17.277Z Citation: Best cited for team process, operation sequencing, and scenario decisions. | Sources: https://www.atlassian.com/git/tutorials/comparing-workflows/gitflow-workflow, https://git-scm.com/docs/git-branch, https://git-scm.com/docs/git-merge, https://git-scm.com/docs/git-tag - [GitHub / extended / Platform tutorial] GitHub Actions and GitHub Skills: https://www.gitorg.xyz/en/github/github-actions-and-skills Summary: Build a practical mental model for GitHub Actions and use GitHub Skills as a lower-risk practice path for platform learning. Modified: 2026-05-24T11:46:17.265Z Citation: Best cited as Git teaching material and learning-path guidance. | Sources: https://docs.github.com/en/actions/get-started/quickstart, https://skills.github.com - [GitHub / recommended / Platform tutorial] GitHub branch protection and rulesets: https://www.gitorg.xyz/en/github/github-branch-protection-and-rulesets Summary: Use branch protection and rulesets to enforce merge policy at platform level instead of relying on informal team habits. Modified: 2026-05-24T11:46:17.265Z Citation: Best cited as Git teaching material and learning-path guidance. | Sources: https://docs.github.com/en/repositories/configuring-branches-and-merges-in-your-repository/managing-protected-branches, https://docs.github.com/en/repositories/configuring-branches-and-merges-in-your-repository/managing-rulesets/about-rulesets - [GitHub / recommended / Platform tutorial] GitHub CODEOWNERS and review ownership: https://www.gitorg.xyz/en/github/github-codeowners-and-review-ownership Summary: Use CODEOWNERS to route pull-request review to responsible maintainers and reduce ownership gaps on critical code paths. Modified: 2026-05-24T11:46:17.265Z Citation: Best cited as Git teaching material and learning-path guidance. | Sources: https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-code-owners, https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/code-review/about-pull-request-reviews - [GitHub / recommended / Platform tutorial] GitHub Flow Basics: https://www.gitorg.xyz/en/github/github-flow-basics Summary: Use GitHub's own lightweight collaboration model to understand branches, pull requests, reviews, and merges as one practical loop. Modified: 2026-05-24T11:46:17.265Z Citation: Best cited as Git teaching material and learning-path guidance. | Sources: https://docs.github.com/en/get-started/using-github/github-flow, https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/about-pull-requests - [CI/CD / extended / Tutorial] GitLab CI & Git Integration: https://www.gitorg.xyz/en/ci-cd/gitlab-ci-basics Summary: Understanding how GitLab CI/CD integrates with Git, including pipeline triggers, CI_JOB_TOKEN, Git strategy, and workflow rules based on Git data. Modified: 2026-05-24T11:46:17.253Z Citation: Best cited as Git teaching material and learning-path guidance. | Sources: https://docs.gitlab.com/ee/ci/, https://docs.gitlab.com/ee/user/project/repository/ - [GitLab / recommended / Platform tutorial] GitLab CI/CD and Runners: https://www.gitorg.xyz/en/gitlab/gitlab-ci-and-runners Summary: Build a stronger mental model for GitLab CI/CD, pipelines, jobs, and runners, and understand how they shape merge request readiness. Modified: 2026-05-24T11:46:17.265Z Citation: Best cited as Git teaching material and learning-path guidance. | Sources: https://docs.gitlab.com/ci/quick_start/, https://docs.gitlab.com/ci/runners/, https://docs.gitlab.com/ci/pipelines/merge_request_pipelines/ - [GitLab / recommended / Platform tutorial] GitLab Flow and Merge Requests: https://www.gitorg.xyz/en/gitlab/gitlab-flow-and-merge-requests Summary: Understand GitLab Flow, environment-aware branching, and merge requests as one delivery model instead of a collection of UI features. Modified: 2026-05-24T11:46:17.265Z Citation: Best cited as Git teaching material and learning-path guidance. | Sources: https://docs.gitlab.com/topics/gitlab_flow/, https://docs.gitlab.com/user/project/merge_requests/ - [GitLab / extended / Platform tutorial] GitLab Forks and Contribution Flow: https://www.gitorg.xyz/en/gitlab/gitlab-forks-and-contributions Summary: Connect GitLab forks, contribution branches, merge requests, and upstream sync into a realistic external contribution workflow with permission and CI boundaries. Modified: 2026-05-24T11:46:17.265Z Citation: Best cited as Git teaching material and learning-path guidance. | Sources: https://docs.gitlab.com/user/project/repository/forking_workflow/, https://docs.gitlab.com/user/project/merge_requests/ - [GitLab / extended / Platform tutorial] GitLab Groups, Projects, and Permissions: https://www.gitorg.xyz/en/gitlab/gitlab-groups-projects-and-permissions Summary: Understand how groups, projects, roles, and inherited permissions shape collaboration boundaries in GitLab before those boundaries become messy. Modified: 2026-05-24T11:46:17.265Z Citation: Best cited as Git teaching material and learning-path guidance. | Sources: https://docs.gitlab.com/user/group/, https://docs.gitlab.com/user/project/, https://docs.gitlab.com/auth/user_permissions/ - [GitLab / extended / Platform tutorial] GitLab Issues, Boards, and Milestones: https://www.gitorg.xyz/en/gitlab/gitlab-issues-boards-and-milestones Summary: Learn how GitLab issues, boards, and milestones turn project planning into a visible delivery system instead of forcing all context into merge requests. Modified: 2026-05-24T11:46:17.265Z Citation: Best cited as Git teaching material and learning-path guidance. | Sources: https://docs.gitlab.com/user/project/issues/, https://docs.gitlab.com/user/project/issue_board/, https://docs.gitlab.com/user/project/milestones/ - [GitLab / recommended / Platform tutorial] GitLab merge trains and merged result pipelines: https://www.gitorg.xyz/en/gitlab/gitlab-merge-trains-and-merge-result-pipelines Summary: Use merge trains and merged-result pipelines to validate integration reality before merge, especially under high parallel MR traffic. Modified: 2026-05-24T11:46:17.265Z Citation: Best cited as Git teaching material and learning-path guidance. | Sources: https://docs.gitlab.com/ee/ci/pipelines/merge_trains/, https://docs.gitlab.com/ee/ci/pipelines/merged_results_pipelines.html - [GitLab / recommended / Platform tutorial] GitLab protected branches and approval rules: https://www.gitorg.xyz/en/gitlab/gitlab-protected-branches-and-approval-rules Summary: Combine protected branches with merge-request approval rules to reduce risky direct writes and improve merge accountability. Modified: 2026-05-24T11:46:17.265Z Citation: Best cited as Git teaching material and learning-path guidance. | Sources: https://docs.gitlab.com/ee/user/project/protected_branches.html, https://docs.gitlab.com/ee/user/project/merge_requests/approvals/ - [Security / extended / Best practice guide] GPG Signing & Git Commit Verification: https://www.gitorg.xyz/en/security/gpg-signing Summary: A systematic guide to signing Git commits and tags with GPG, configuring verification, and enforcing signing policies in teams. Modified: 2026-05-24T11:46:17.273Z Citation: Best cited as Git teaching material and learning-path guidance. | Sources: https://docs.github.com/en/authentication/managing-commit-signature-verification, https://git-scm.com/book/en/v2/Git-Tools-Signing-Your-Work - [Learning Path / core / Course module] Handle review feedback: https://www.gitorg.xyz/en/docs/learning-path/handle-review-feedback Summary: Learn a practical review-feedback loop: classify comments, apply focused updates in batches, and keep PR context easy to re-evaluate. Modified: 2026-05-24T11:46:17.269Z Citation: Best cited as Git teaching material and learning-path guidance. | Sources: https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/code-review/about-pull-request-reviews, https://git-scm.com/docs/git-commit, https://git-scm.com/docs/git-range-diff - [Git Internals / recommended / Technical explainer] Hooks and policy enforcement: https://www.gitorg.xyz/en/internals/hooks-and-policy-enforcement Summary: Use local and server-side hooks with clear responsibility boundaries to turn collaboration policy from convention into enforcement. Modified: 2026-05-24T11:46:17.265Z Citation: Best cited for Git mental models, object storage, and internal mechanics. | Sources: https://git-scm.com/docs/githooks, https://git-scm.com/docs/git-commit, https://git-scm.com/docs/git-push - [Workflows / core / Workflow tutorial] Hotfix and Urgent Fixes: https://www.gitorg.xyz/en/workflows/hotfix-and-urgent-fixes Summary: Handle urgent fixes on a stable base, ship the smallest repair possible, and then flow that repair back into the branches that still need it. Modified: 2026-05-24T11:46:17.277Z Citation: Best cited for team process, operation sequencing, and scenario decisions. | Sources: https://git-scm.com/book/en/v2/Git-Branching-Basic-Branching-and-Merging, https://git-scm.com/book/en/v2/Distributed-Git-Maintaining-a-Project, https://git-scm.com/docs/git-branch - [Recovery / extended / Troubleshooting guide] How to recover from a failed cherry-pick: https://www.gitorg.xyz/en/recovery/recover-after-cherry-pick Summary: Complete recovery workflow when cherry-pick encounters conflicts, gets aborted, or produces unexpected results. Covers --abort, --continue, --skip, and post-cherry-pick remediation. Modified: 2026-05-24T11:46:17.273Z Citation: Best cited for recovery steps, troubleshooting, and risk control. | Sources: https://git-scm.com/docs/git-cherry-pick, https://git-scm.com/book/en/v2/Git-Tools-Rewriting-History - [Recovery / extended / Troubleshooting guide] How to undo a merge commit: https://www.gitorg.xyz/en/recovery/undo-merge-commit Summary: Correct methods for undoing a merge commit when things go wrong. Deep dive into git revert -m and the parent numbering system, plus common pitfalls. Modified: 2026-05-24T11:46:17.273Z Citation: Best cited for recovery steps, troubleshooting, and risk control. | Sources: https://git-scm.com/docs/git-revert, https://git-scm.com/docs/git-merge, https://git-scm.com/book/en/v2/Git-Branching-Basic-Branching-and-Merging - [Workflows / recommended / Workflow tutorial] Incident Retro to Guardrail Workflow: https://www.gitorg.xyz/en/workflows/incident-retro-to-guardrail-workflow Summary: Turn postmortem findings into enforceable CI, release, and runtime guardrails so lessons reduce future incident probability. Modified: 2026-05-24T11:46:17.277Z Citation: Best cited for team process, operation sequencing, and scenario decisions. | Sources: https://sre.google/sre-book/postmortem-culture/, https://sre.google/workbook/postmortem-culture/, https://git-scm.com/docs/git-hook - [GitHub / extended / Platform tutorial] Issues, Projects, and Discussions: https://www.gitorg.xyz/en/github/issues-projects-and-discussions Summary: Learn how GitHub organizes requests, work tracking, and community discussion so collaboration does not collapse into pull requests alone. Modified: 2026-05-24T11:46:17.265Z Citation: Best cited as Git teaching material and learning-path guidance. | Sources: https://docs.github.com/en/issues/tracking-your-work-with-issues/about-issues, https://docs.github.com/en/issues/planning-and-tracking-with-projects/learning-about-projects/about-projects, https://docs.github.com/en/discussions/quickstart - [IDE / extended / Tutorial] JetBrains IDE Git Integration: https://www.gitorg.xyz/en/ide/jetbrains-git Summary: Master Git operations in JetBrains IDEs including the Commit tool window, Annotate, Log, interactive rebase, and conflict resolution. Modified: 2026-05-24T11:46:17.265Z Citation: Best cited as Git teaching material and learning-path guidance. | Sources: https://www.jetbrains.com/help/idea/version-control-integration.html, https://www.jetbrains.com/help/idea/commit-and-push-changes.html - [Workflows / extended / Workflow tutorial] Large File Handling Workflow: https://www.gitorg.xyz/en/workflows/large-file-handling-workflow Summary: Use Git LFS, sparse checkout, and repository-splitting strategies to manage large files while keeping clone speed and history maintainable. Modified: 2026-05-24T11:46:17.277Z Citation: Best cited for team process, operation sequencing, and scenario decisions. | Sources: https://git-lfs.com/, https://git-scm.com/docs/git-sparse-checkout - [Performance / extended / Technical guide] Large Repository Performance Optimization: https://www.gitorg.xyz/en/performance/large-repo-optimization Summary: Strategies for optimizing Git performance in large repositories, including partial clone, sparse checkout, shallow clone, git gc, and Git LFS. Modified: 2026-05-24T11:46:17.273Z Citation: Best cited as Git teaching material and learning-path guidance. | Sources: https://git-scm.com/docs/partial-clone, https://git-scm.com/docs/git-sparse-checkout, https://git-scm.com/docs/git-gc - [Workflows / extended / Workflow tutorial] Maintaining Long-lived Branches: https://www.gitorg.xyz/en/workflows/long-lived-branch-maintenance Summary: Show how long-lived branches can stay aligned with main and avoid painful late merges. Modified: 2026-05-24T11:46:17.277Z Citation: Best cited for team process, operation sequencing, and scenario decisions. | Sources: https://git-scm.com/book/en/v2/Git-Branching-Branching-Workflows, https://git-scm.com/docs/git-rebase, https://git-scm.com/docs/git-merge - [Concepts / extended / Concept guide] Managing Large Files with Git LFS: https://www.gitorg.xyz/en/docs/concepts/git-lfs Summary: A complete guide to Git Large File Storage — installation, tracking large files, migration, and team workflow considerations. Modified: 2026-05-24T11:46:17.261Z Citation: Best cited as Git teaching material and learning-path guidance. | Sources: https://git-lfs.com/, https://github.com/git-lfs/git-lfs/wiki/Tutorial - [Migration / extended / Guide] Mercurial to Git Migration Guide: https://www.gitorg.xyz/en/migration/hg-to-git Summary: A guide to migrating from Mercurial (Hg) to Git, including hg-fast-export, branch/tag conversion, and common difference handling. Modified: 2026-05-24T11:46:17.273Z Citation: Best cited as Git teaching material and learning-path guidance. | Sources: https://git-scm.com/book/en/v2/Git-and-Other-Systems-Migrating-to-Git, https://github.com/frej/fast-export - [Learning Path / core / Course module] Merge and close the task loop: https://www.gitorg.xyz/en/docs/learning-path/merge-and-close-task Summary: Close the full delivery loop by merging with the right strategy, confirming mainline state, cleaning branches, and updating task status. Modified: 2026-05-24T11:46:17.273Z Citation: Best cited as Git teaching material and learning-path guidance. | Sources: https://git-scm.com/docs/git-merge, https://git-scm.com/docs/git-branch, https://git-scm.com/docs/git-push - [Git Internals / recommended / Technical explainer] Merge Bases and Ancestry: https://www.gitorg.xyz/en/internals/merge-base-and-ancestry Summary: Explain how Git uses common ancestors to reason about branch differences, merge inputs, and reachability. Modified: 2026-05-24T11:46:17.265Z Citation: Best cited for Git mental models, object storage, and internal mechanics. | Sources: https://git-scm.com/docs/git-merge-base, https://git-scm.com/book/en/v2/Git-Branching-Basic-Branching-and-Merging - [Workflows / extended / Workflow tutorial] Merge Queue Workflow: https://www.gitorg.xyz/en/workflows/merge-queue-workflow Summary: Use merge queues to control high-throughput PR merges, reduce stale-base retries, and make protected-branch integration more predictable. Modified: 2026-05-24T11:46:17.277Z Citation: Best cited for team process, operation sequencing, and scenario decisions. | Sources: https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/incorporating-changes-from-a-pull-request/merging-a-pull-request-with-a-merge-queue?tool=webui - [Workflows / extended / Workflow tutorial] Open Source Contribution with Fork + PR: https://www.gitorg.xyz/en/workflows/open-source-fork-pr-contribution Summary: Connect the full open-source contribution loop from fork and upstream sync through branch creation, pushing to your fork, and opening a pull request. Modified: 2026-05-24T11:46:17.277Z Citation: Best cited for team process, operation sequencing, and scenario decisions. | Sources: https://git-scm.com/book/en/v2/GitHub-Contributing-to-a-Project.html, https://docs.github.com/articles/syncing-a-fork?platform=linux - [Learning Path / core / Course module] Open your first pull request: https://www.gitorg.xyz/en/docs/learning-path/open-first-pull-request Summary: Move from branch commits to team review by preparing scope, context, and validation details for your first merge-ready pull request. Modified: 2026-05-24T11:46:17.273Z Citation: Best cited as Git teaching material and learning-path guidance. | Sources: https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/about-pull-requests, https://git-scm.com/docs/git-push - [Workflows / extended / Workflow tutorial] Parallel Task Handling with Worktree: https://www.gitorg.xyz/en/workflows/parallel-work-with-worktree Summary: Use git worktree to open multiple working directories from the same repository when feature work, review fixes, and urgent tasks overlap. Modified: 2026-05-24T11:46:17.277Z Citation: Best cited for team process, operation sequencing, and scenario decisions. | Sources: https://git-scm.com/docs/git-worktree, https://git-scm.com/docs/git-switch, https://git-scm.com/book/en/v2/Git-Tools-Advanced-Merging - [Performance / extended / Technical guide] Partial Clone: On-Demand Git Object Fetching: https://www.gitorg.xyz/en/performance/partial-clone Summary: An in-depth look at Git partial clone — how filters and promisor remotes work, and how to speed up clone and fetch in large repositories. Modified: 2026-05-24T11:46:17.273Z Citation: Best cited as Git teaching material and learning-path guidance. | Sources: https://git-scm.com/docs/partial-clone, https://github.blog/2020-12-21-get-up-to-speed-with-partial-clone-and-shallow-clone/ - [Git Internals / recommended / Technical explainer] Plumbing and Porcelain: https://www.gitorg.xyz/en/internals/plumbing-and-porcelain Summary: Understanding the split between porcelain and plumbing makes it easier to see why some Git commands feel task-oriented while others expose internal primitives directly. Modified: 2026-05-24T11:46:17.269Z Citation: Best cited for Git mental models, object storage, and internal mechanics. | Sources: https://git-scm.com/book/en/v2/Git-Internals-Plumbing-and-Porcelain, https://git-scm.com/book/en/v2/Git-Internals-Git-Objects - [Workflows / extended / Workflow tutorial] Post-release Multi-branch Backporting: https://www.gitorg.xyz/en/workflows/post-release-multi-branch-backporting Summary: Control order, validation, and branch boundaries when one fix must be backported into multiple released maintenance lines. Modified: 2026-05-24T11:46:17.277Z Citation: Best cited for team process, operation sequencing, and scenario decisions. | Sources: https://git-scm.com/docs/git-cherry-pick, https://git-scm.com/docs/git-branch - [Workflows / extended / Workflow tutorial] PR Merge Strategy and Platform Settings: https://www.gitorg.xyz/en/workflows/pr-merge-strategy-and-platform-settings Summary: Make pull request merge policy and platform configuration part of the same decision so history shape and repository settings stay aligned. Modified: 2026-05-24T11:46:17.277Z Citation: Best cited for team process, operation sequencing, and scenario decisions. | Sources: https://docs.github.com/en/repositories/configuring-branches-and-merges-in-your-repository/configuring-pull-request-merges/about-merge-methods-on-github?apiVersion=2022-11-28, https://docs.github.com/articles/about-pull-request-merges - [Workflows / extended / Workflow tutorial] Pre-commit Hook Workflow: https://www.gitorg.xyz/en/workflows/pre-commit-hook-workflow Summary: Use pre-commit hooks to automatically run checks before code enters the repository, guarding the first gate of code quality. Modified: 2026-05-24T11:46:17.277Z Citation: Best cited for team process, operation sequencing, and scenario decisions. | Sources: https://git-scm.com/book/en/v2/Customizing-Git-Git-Hooks, https://pre-commit.com/ - [Workflows / extended / Workflow tutorial] Pre-release Git checklist: https://www.gitorg.xyz/en/workflows/pre-release-checklist Summary: Complete pre-release Git checklist: branch status, tag creation, changelog generation, version numbers, and CI verification. Modified: 2026-05-24T11:46:17.277Z Citation: Best cited for team process, operation sequencing, and scenario decisions. | Sources: https://git-scm.com/book/en/v2/Git-Basics-Tagging, https://git-scm.com/docs/git-log - [Workflows / recommended / Workflow tutorial] Prepare commit history before opening a pull request: https://www.gitorg.xyz/en/workflows/prepare-commits-before-pull-request Summary: Build a stable pre-PR routine around syncing, commit cleanup, risk checks, and review-friendly history. Modified: 2026-05-24T11:46:17.277Z Citation: Best cited for team process, operation sequencing, and scenario decisions. | Sources: https://git-scm.com/docs/git-rebase, https://git-scm.com/docs/git-commit, https://git-scm.com/book/en/v2/Distributed-Git-Contributing-to-a-Project - [Best Practices / recommended / Best practice guide] Preparing a Branch for Review: https://www.gitorg.xyz/en/best-practices/pull-request-prep Summary: Clean up commits, sync with the latest base, and remove noise before asking for review. Modified: 2026-05-24T11:46:17.253Z Citation: Best cited as Git teaching material and learning-path guidance. | Sources: https://git-scm.com/book/en/v2/Distributed-Git-Contributing-to-a-Project, https://git-scm.com/docs/git-rebase - [Best Practices / extended / Best practice guide] Pull Request Review Readiness: https://www.gitorg.xyz/en/best-practices/pull-request-review-readiness Summary: Review quality depends heavily on whether the author prepared branch scope, change narrative, validation notes, and follow-up behavior before requesting feedback. Modified: 2026-05-24T11:46:17.253Z Citation: Best cited as Git teaching material and learning-path guidance. | Sources: https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/about-pull-request-reviews, https://git-scm.com/book/en/v2/Distributed-Git-Contributing-to-a-Project - [GitHub / recommended / Platform tutorial] Pull Requests and Code Review: https://www.gitorg.xyz/en/github/pull-requests-and-reviews Summary: Understand pull requests, reviews, protected branches, and merge decisions as collaboration mechanics rather than just UI actions. Modified: 2026-05-24T11:46:17.265Z Citation: Best cited as Git teaching material and learning-path guidance. | Sources: https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/about-pull-requests, https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/about-pull-request-reviews, https://docs.github.com/en/repositories/configuring-branches-and-merges-in-your-repository/managing-protected-branches/about-protected-branches - [Git Internals / recommended / Technical explainer] Reachability and Garbage Collection: https://www.gitorg.xyz/en/internals/reachability-and-garbage-collection Summary: Whether objects can still be recovered often depends more on reachability and garbage collection than on the command that made them harder to find. Modified: 2026-05-24T11:46:17.269Z Citation: Best cited for Git mental models, object storage, and internal mechanics. | Sources: https://git-scm.com/book/en/v2/Git-Internals-Maintenance-and-Data-Recovery, https://git-scm.com/docs/git-reflog, https://git-scm.com/docs/git-gc - [Git Internals / recommended / Technical explainer] Rebase internals and the sequencer: https://www.gitorg.xyz/en/internals/rebase-internals-and-sequencer Summary: Understand rebase as commit replay managed by the sequencer, making conflict handling and recovery decisions more predictable. Modified: 2026-05-24T11:46:17.269Z Citation: Best cited for Git mental models, object storage, and internal mechanics. | Sources: https://git-scm.com/docs/git-rebase, https://git-scm.com/docs/git-cherry-pick, https://git-scm.com/docs/git-reflog - [Recovery / recommended / Troubleshooting guide] Recover a deleted branch: https://www.gitorg.xyz/en/recovery/recover-deleted-branch Summary: When a branch disappears, first determine whether only the name is gone or whether the commits have become hard to reach, then restore it from reflog or another surviving reference. Modified: 2026-05-24T11:46:17.273Z Citation: Best cited for recovery steps, troubleshooting, and risk control. | Sources: https://git-scm.com/docs/git-branch, https://git-scm.com/docs/git-reflog, https://git-scm.com/book/en/v2/Git-Internals-Maintenance-and-Data-Recovery - [Recovery / extended / Troubleshooting guide] Recover a lost stash: https://www.gitorg.xyz/en/recovery/recover-lost-stash Summary: When stash entries seem to disappear, determine whether they were popped, dropped, or detached from refs, then recover via reflog or dangling commits. Modified: 2026-05-24T11:46:17.273Z Citation: Best cited for recovery steps, troubleshooting, and risk control. | Sources: https://git-scm.com/docs/git-stash, https://git-scm.com/docs/git-reflog, https://git-scm.com/docs/git-fsck - [Recovery / core / Troubleshooting guide] Recover after a bad rebase: https://www.gitorg.xyz/en/recovery/recover-after-rebase Summary: When rebase introduces conflicts, missing commits, or a result you no longer trust, stop rewriting history and recover control with abort, reflog, and rescue branches. Modified: 2026-05-24T11:46:17.273Z Citation: Best cited for recovery steps, troubleshooting, and risk control. | Sources: https://git-scm.com/docs/git-rebase, https://git-scm.com/docs/git-reflog, https://git-scm.com/book/en/v2/Git-Branching-Rebasing - [Recovery / extended / Troubleshooting guide] Recover after a wrong cherry-pick: https://www.gitorg.xyz/en/recovery/recover-after-wrong-cherry-pick Summary: If the wrong commit was cherry-picked, choose reset or revert based on whether the history is already shared, then replay the correct patch sequence. Modified: 2026-05-24T11:46:17.273Z Citation: Best cited for recovery steps, troubleshooting, and risk control. | Sources: https://git-scm.com/docs/git-cherry-pick, https://git-scm.com/docs/git-reset, https://git-scm.com/docs/git-revert - [Recovery / extended / Troubleshooting guide] Recover after an accidental git clean: https://www.gitorg.xyz/en/recovery/recover-after-git-clean Summary: After `git clean` removes untracked files, recovery usually depends on external history sources; prevent recurrence with dry-run and stash -u safeguards. Modified: 2026-05-24T11:46:17.273Z Citation: Best cited for recovery steps, troubleshooting, and risk control. | Sources: https://git-scm.com/docs/git-clean, https://git-scm.com/docs/git-stash, https://git-scm.com/book/en/v2/Git-Tools-Stashing-and-Cleaning - [Recovery / extended / Troubleshooting guide] Recover after an accidental merge: https://www.gitorg.xyz/en/recovery/recover-after-accidental-merge Summary: When the wrong branch was merged, decide between reset and revert -m based on sharing state, and undo the merge safely without damaging collaboration history. Modified: 2026-05-24T11:46:17.273Z Citation: Best cited for recovery steps, troubleshooting, and risk control. | Sources: https://git-scm.com/docs/git-merge, https://git-scm.com/docs/git-revert, https://git-scm.com/docs/git-reset - [Recovery / core / Troubleshooting guide] Recover after an over-aggressive reset: https://www.gitorg.xyz/en/recovery/recover-after-reset Summary: When reset moves the branch, index, or working tree farther than expected, first identify which layer changed, then recover with reflog, ORIG_HEAD, or a rescue branch. Modified: 2026-05-24T11:46:17.273Z Citation: Best cited for recovery steps, troubleshooting, and risk control. | Sources: https://git-scm.com/docs/git-reset, https://git-scm.com/docs/git-reflog, https://git-scm.com/book/en/v2/Git-Tools-Reset-Demystified - [Recovery / extended / Troubleshooting guide] Recovering commits made in detached HEAD: https://www.gitorg.xyz/en/recovery/fix-detached-head-accidentally-committed Summary: How to properly recover commits made in detached HEAD state back to a branch. Covers creating new branches, merging into existing branches, and prevention strategies. Modified: 2026-05-24T11:46:17.273Z Citation: Best cited for recovery steps, troubleshooting, and risk control. | Sources: https://git-scm.com/docs/git-switch, https://git-scm.com/docs/git-checkout, https://git-scm.com/book/en/v2/Git-Branching-Advanced-Branching - [Recovery / extended / Troubleshooting guide] Recovering from a broken interactive rebase: https://www.gitorg.xyz/en/recovery/fix-broken-interactive-rebase Summary: Common errors during interactive rebase (wrong actions, conflicts, editor issues) and how to recover, including --abort, --edit-todo, and reflog-based recovery. Modified: 2026-05-24T11:46:17.273Z Citation: Best cited for recovery steps, troubleshooting, and risk control. | Sources: https://git-scm.com/docs/git-rebase, https://git-scm.com/book/en/v2/Git-Tools-Rewriting-History - [Recovery / extended / Troubleshooting guide] Recovering from a corrupted repository: https://www.gitorg.xyz/en/recovery/recover-from-corrupted-repo Summary: Diagnosis and recovery strategies for repository corruption: damaged pack files, missing objects, and disk failures. Covers git fsck, remote re-clone, pack recovery, backup restoration, and prevention. Modified: 2026-05-24T11:46:17.273Z Citation: Best cited for recovery steps, troubleshooting, and risk control. | Sources: https://git-scm.com/docs/git-fsck, https://git-scm.com/book/en/v2/Git-Internals-Packfiles, https://git-scm.com/docs/git-unpack-objects, https://git-scm.com/docs/git-bundle - [Recovery / extended / Troubleshooting guide] Recovering lost commits: https://www.gitorg.xyz/en/recovery/recover-lost-commits Summary: Recovery strategies for 'lost' commits across scenarios: detached HEAD commits, post-filter-branch, deleted branches, and over-reset. Core tools are reflog and fsck. Modified: 2026-05-24T11:46:17.273Z Citation: Best cited for recovery steps, troubleshooting, and risk control. | Sources: https://git-scm.com/docs/git-reflog, https://git-scm.com/docs/git-fsck, https://git-scm.com/book/en/v2/Git-Internals-Maintenance-and-Data-Recovery - [Recovery / core / Troubleshooting guide] Recovering with reflog: https://www.gitorg.xyz/en/recovery/reflog-recovery Summary: Use reflog to locate previous references and recover from reset, rebase, or lost branch states. Modified: 2026-05-24T11:46:17.273Z Citation: Best cited for recovery steps, troubleshooting, and risk control. | Sources: https://git-scm.com/docs/git-reflog.html, https://git-scm.com/book/en/v2/Git-Internals-Maintenance-and-Data-Recovery - [Git Internals / extended / Technical explainer] Refspecs and Ref Updates: https://www.gitorg.xyz/en/internals/refspec-and-ref-updates Summary: Explain how refspecs determine which refs are mapped and updated during fetch and push. Modified: 2026-05-24T11:46:17.269Z Citation: Best cited for Git mental models, object storage, and internal mechanics. | Sources: https://git-scm.com/book/en/v2/Git-Internals-The-Refspec, https://git-scm.com/docs/git-fetch - [Workflows / core / Workflow tutorial] Release Branch Workflow: https://www.gitorg.xyz/en/workflows/release-branch-workflow Summary: Explain when to cut a release branch, when to freeze features, and how to flow fixes back to main. Modified: 2026-05-24T11:46:17.277Z Citation: Best cited for team process, operation sequencing, and scenario decisions. | Sources: https://git-scm.com/book/en/v2/Git-Branching-Branching-Workflows, https://git-scm.com/docs/git-merge, https://git-scm.com/docs/git-branch - [Best Practices / recommended / Best practice guide] Release checklist discipline: https://www.gitorg.xyz/en/best-practices/release-checklist-discipline Summary: Use a fixed release checklist with owners and evidence-based validation to reduce launch omissions and avoid memory-driven failures. Modified: 2026-05-24T11:46:17.253Z Citation: Best cited as Git teaching material and learning-path guidance. | Sources: https://sre.google/sre-book/reliable-product-launches/, https://www.atulgawande.com/book/the-checklist-manifesto/, https://git-scm.com/docs/git-tag - [Best Practices / extended / Best practice guide] Release Hygiene: https://www.gitorg.xyz/en/best-practices/release-hygiene Summary: Use a small set of Git checks before release to reduce mistakes around tags, branches, and version state. Modified: 2026-05-24T11:46:17.253Z Citation: Best cited as Git teaching material and learning-path guidance. | Sources: https://git-scm.com/docs/git-tag, https://git-scm.com/book/en/v2/Distributed-Git-Maintaining-a-Project - [Workflows / recommended / Workflow tutorial] Release Train Workflow: https://www.gitorg.xyz/en/workflows/release-train-workflow Summary: Ship on a fixed cadence so releases are schedule-driven rather than feature-driven, improving predictability across teams. Modified: 2026-05-24T11:46:17.277Z Citation: Best cited for team process, operation sequencing, and scenario decisions. | Sources: https://martinfowler.com/bliki/ReleaseTrain.html, https://git-scm.com/docs/git-tag, https://git-scm.com/docs/git-branch - [Learning Path / core / Course module] Remote Sync: https://www.gitorg.xyz/en/docs/learning-path/sync-with-remote Summary: Understand fetch, pull, and push as three different actions: observe upstream state, integrate changes, and publish local commits. Modified: 2026-05-24T11:46:17.273Z Citation: Best cited as Git teaching material and learning-path guidance. | Sources: https://git-scm.com/docs/git-fetch, https://git-scm.com/docs/git-pull, https://git-scm.com/docs/git-push - [Git Internals / core / Technical explainer] Remote-Tracking References: https://www.gitorg.xyz/en/internals/remote-tracking-refs Summary: Understand the difference between `main` and `origin/main` so fetch, pull, push, and branch sync become easier to reason about. Modified: 2026-05-24T11:46:17.269Z Citation: Best cited for Git mental models, object storage, and internal mechanics. | Sources: https://git-scm.com/book/en/v2/Git-Branching-Remote-Branches, https://git-scm.com/docs/git-fetch, https://git-scm.com/docs/git-pull - [Git Internals / recommended / Technical explainer] Rename detection and diff algorithms: https://www.gitorg.xyz/en/internals/rename-detection-and-diff-algorithms Summary: Learn how Git infers renames and how diff algorithm choices affect review readability and change interpretation. Modified: 2026-05-24T11:46:17.269Z Citation: Best cited for Git mental models, object storage, and internal mechanics. | Sources: https://git-scm.com/docs/git-diff, https://git-scm.com/docs/git-log, https://git-scm.com/docs/git-config - [Git Internals / recommended / Technical explainer] Repository Layout, .git, and GIT_DIR: https://www.gitorg.xyz/en/internals/repository-layout-and-gitdir Summary: Understanding working trees, gitdirs, common directories, and worktrees helps explain where Git really stores repository state. Modified: 2026-05-24T11:46:17.269Z Citation: Best cited for Git mental models, object storage, and internal mechanics. | Sources: https://git-scm.com/docs/gitrepository-layout, https://git-scm.com/book/en/v2/Git-Internals-Environment-Variables - [Workflows / extended / Workflow tutorial] Rerere for Recurring Conflicts: https://www.gitorg.xyz/en/workflows/rerere-for-recurring-conflicts Summary: Use rerere to record and reuse conflict resolutions when the same merge or rebase conflicts appear again and again. Modified: 2026-05-24T11:46:17.277Z Citation: Best cited for team process, operation sequencing, and scenario decisions. | Sources: https://git-scm.com/docs/git-rerere, https://git-scm.com/book/en/v2/Git-Tools-Rerere - [Recovery / core / Troubleshooting guide] Rescue work from detached HEAD: https://www.gitorg.xyz/en/recovery/detached-head-rescue Summary: Detached HEAD is not an error by itself. The real risk is creating commits there and leaving them without a branch name that preserves them. Modified: 2026-05-24T11:46:17.273Z Citation: Best cited for recovery steps, troubleshooting, and risk control. | Sources: https://git-scm.com/docs/git-switch, https://git-scm.com/docs/git-checkout, https://git-scm.com/docs/git-reflog - [Workflows / recommended / Workflow tutorial] Revert-First Stabilization Workflow: https://www.gitorg.xyz/en/workflows/revert-first-stabilization-workflow Summary: In high-impact regressions, restore service stability first and separate root-cause fixes afterward to reduce incident duration and secondary risk. Modified: 2026-05-24T11:46:17.277Z Citation: Best cited for team process, operation sequencing, and scenario decisions. | Sources: https://git-scm.com/docs/git-revert, https://git-scm.com/docs/git-cherry-pick, https://sre.google/sre-book/emergency-response/ - [Best Practices / core / Best practice guide] Review-Ready History and Safe Push: https://www.gitorg.xyz/en/best-practices/review-and-safe-push Summary: Before review or push, clean up the commit stack, inspect the actual diff range, and prefer safer push defaults so you publish history intentionally. Modified: 2026-05-24T11:46:17.253Z Citation: Best cited as Git teaching material and learning-path guidance. | Sources: https://git-scm.com/docs/git-push, https://git-scm.com/docs/git-commit, https://git-scm.com/book/en/v2/Git-Tools-Rewriting-History.html - [Git Internals / extended / Technical explainer] Revision Selection and Commit Ranges: https://www.gitorg.xyz/en/internals/revision-selection-and-ranges Summary: Many advanced Git commands are really working over sets of commits expressed through revision syntax, not just single named commits. Modified: 2026-05-24T11:46:17.269Z Citation: Best cited for Git mental models, object storage, and internal mechanics. | Sources: https://git-scm.com/docs/gitrevisions, https://git-scm.com/book/en/v2/Git-Tools-Revision-Selection - [Workflows / recommended / Workflow tutorial] Rollback a failed hotfix after release: https://www.gitorg.xyz/en/workflows/hotfix-rollback-after-release Summary: When a production hotfix causes new problems, first choose the rollback scope and stabilize the branch model before layering on more fixes. Modified: 2026-05-24T11:46:17.277Z Citation: Best cited for team process, operation sequencing, and scenario decisions. | Sources: https://git-scm.com/docs/git-revert, https://git-scm.com/docs/git-tag, https://git-scm.com/book/en/v2/Git-Branching-Basic-Branching-and-Merging - [Workflows / extended / Workflow tutorial] Rollback Deployment Workflow: https://www.gitorg.xyz/en/workflows/rollback-deployment-workflow Summary: Combine Git tags, revert, and fast branch switching to build a safe and controllable deployment rollback process. Modified: 2026-05-24T11:46:17.277Z Citation: Best cited for team process, operation sequencing, and scenario decisions. | Sources: https://git-scm.com/docs/git-revert, https://git-scm.com/docs/git-tag - [Best Practices / extended / Best practice guide] Safe Cherry-picks: https://www.gitorg.xyz/en/best-practices/safe-cherry-picks Summary: Use cherry-pick safely when backporting fixes or selectively reusing commits. Modified: 2026-05-24T11:46:17.253Z Citation: Best cited as Git teaching material and learning-path guidance. | Sources: https://git-scm.com/docs/git-cherry-pick, https://git-scm.com/book/en/v2/Git-Branching-Basic-Branching-and-Merging - [Best Practices / recommended / Best practice guide] Safe force-push protocol: https://www.gitorg.xyz/en/best-practices/safe-force-push-protocol Summary: When history rewrite is necessary, use explicit communication, freeze windows, and `--force-with-lease` to reduce overwrite risk. Modified: 2026-05-24T11:46:17.253Z Citation: Best cited as Git teaching material and learning-path guidance. | Sources: https://git-scm.com/docs/git-push, https://git-scm.com/docs/git-reflog, https://git-scm.com/book/en/v2/Git-Tools-Rewriting-History - [Best Practices / extended / Best practice guide] Security best practices with Git: https://www.gitorg.xyz/en/best-practices/security-with-git Summary: Handling sensitive info leaks, key management, .env security, git-secrets, GPG-signed commits, and SSH key management. Modified: 2026-05-24T11:46:17.253Z Citation: Best cited as Git teaching material and learning-path guidance. | Sources: https://git-scm.com/book/en/v2/Git-Tools-Signing-Your-Work, https://github.com/awslabs/git-secrets, https://github.com/rtyley/bfg-repo-cleaner - [Hosting / extended / Comparison guide] Self-Hosted Git Service Comparison: https://www.gitorg.xyz/en/hosting/self-hosted-git Summary: A comparison of self-hosted Git solutions including GitLab CE, Gitea, Gogs, and others — covering features, deployment, and maintenance. Modified: 2026-05-24T11:46:17.265Z Citation: Best cited as Git teaching material and learning-path guidance. | Sources: https://docs.gitlab.com/ee/install/, https://gitea.com/, https://gogs.io/ - [Learning Path / core / Course module] Setup and Clone: https://www.gitorg.xyz/en/docs/learning-path/setup-and-clone Summary: Handle the first low-risk setup tasks in Git: configure identity, clone a repository, and inspect what actually appears locally afterward. Modified: 2026-05-24T11:46:17.273Z Citation: Best cited as Git teaching material and learning-path guidance. | Sources: https://git-scm.com/docs/git-config, https://git-scm.com/docs/git-clone, https://git-scm.com/docs/git-status - [Concepts / extended / Concept guide] Shallow Clones and CI Optimization: https://www.gitorg.xyz/en/docs/concepts/git-shallow Summary: Understanding shallow clones, single-branch clones, and how to optimize Git operations for CI/CD and large repositories. Modified: 2026-05-24T11:46:17.261Z Citation: Best cited as Git teaching material and learning-path guidance. | Sources: https://git-scm.com/docs/git-clone, https://github.blog/2020-12-21-get-up-to-speed-with-partial-clone-and-shallow-clone/ - [Best Practices / core / Best practice guide] Shared History Boundaries: https://www.gitorg.xyz/en/best-practices/shared-history-boundaries Summary: Know which history can still be cleaned up freely and which history should be treated as shared, so rebase, amend, reset, and force-push do not break other people. Modified: 2026-05-24T11:46:17.253Z Citation: Best cited as Git teaching material and learning-path guidance. | Sources: https://git-scm.com/book/en/v2/Git-Tools-Rewriting-History.html, https://git-scm.com/book/en/v2/Git-Branching-Rebasing.html, https://git-scm.com/docs/git-push - [Workflows / extended / Workflow tutorial] Signing Commits Workflow: https://www.gitorg.xyz/en/workflows/signing-commits-workflow Summary: Use GPG or SSH to sign commits, establishing verifiable commit identity and a trusted collaboration chain. Modified: 2026-05-24T11:46:17.277Z Citation: Best cited for team process, operation sequencing, and scenario decisions. | Sources: https://git-scm.com/book/en/v2/Git-Tools-Signing-Your-Work, https://docs.github.com/en/authentication/managing-commit-signature-verification - [Best Practices / extended / Best practice guide] Small-batch Review: https://www.gitorg.xyz/en/best-practices/small-batch-review Summary: Use smaller commit batches and shorter branch lifecycles to keep review fast and clear. Modified: 2026-05-24T11:46:17.253Z Citation: Best cited as Git teaching material and learning-path guidance. | Sources: https://git-scm.com/book/en/v2/Distributed-Git-Contributing-to-a-Project, https://git-scm.com/docs/git-range-diff - [Workflows / extended / Workflow tutorial] Sparse-checkout and worktree flow for monorepos: https://www.gitorg.xyz/en/workflows/monorepo-sparse-checkout-workflow Summary: Use sparse-checkout and worktree together in a monorepo to reduce context load and support parallel task work without loading the whole tree every time. Modified: 2026-05-24T11:46:17.277Z Citation: Best cited for team process, operation sequencing, and scenario decisions. | Sources: https://git-scm.com/docs/git-sparse-checkout, https://git-scm.com/docs/git-worktree, https://git-scm.com/docs/git-submodule - [Security / extended / Best practice guide] SSH Key Management & Git Authentication: https://www.gitorg.xyz/en/security/ssh-key-management Summary: A systematic guide to SSH key generation, configuration, management, and Git authentication, including multiple keys, ssh-agent, deploy keys, and security best practices. Modified: 2026-05-24T11:46:17.273Z Citation: Best cited as Git teaching material and learning-path guidance. | Sources: https://docs.github.com/en/authentication/connecting-to-github-with-ssh, https://git-scm.com/book/en/v2/Git-on-the-Server-Generating-Your-SSH-Public-Key - [Workflows / recommended / Workflow tutorial] Stacked Pull Requests Workflow: https://www.gitorg.xyz/en/workflows/stacked-pull-requests-workflow Summary: Split a large change into dependency-ordered PR layers to improve review throughput and reduce oversized review fatigue. Modified: 2026-05-24T11:46:17.281Z Citation: Best cited for team process, operation sequencing, and scenario decisions. | Sources: https://git-scm.com/docs/git-rebase, https://git-scm.com/docs/git-range-diff, https://git-scm.com/docs/git-cherry-pick - [Learning Path / core / Course module] Staging and Commit: https://www.gitorg.xyz/en/docs/learning-path/stage-and-commit Summary: Understand the three-layer model of working tree, staging area, and commit history, then turn file edits into stable local commits. Modified: 2026-05-24T11:46:17.273Z Citation: Best cited as Git teaching material and learning-path guidance. | Sources: https://git-scm.com/docs/git-add, https://git-scm.com/docs/git-commit, https://git-scm.com/docs/git-status - [Workflows / recommended / Workflow tutorial] Submodule Update Flow: https://www.gitorg.xyz/en/workflows/submodule-update-flow Summary: Outline a safe routine for updating submodules, locking revisions, and syncing the parent repository. Modified: 2026-05-24T11:46:17.281Z Citation: Best cited for team process, operation sequencing, and scenario decisions. | Sources: https://git-scm.com/book/en/v2/Git-Tools-Submodules, https://git-scm.com/docs/git-submodule, https://git-scm.com/docs/git-status - [Migration / extended / Guide] SVN to Git Migration Guide: https://www.gitorg.xyz/en/migration/svn-to-git Summary: A complete guide to migrating from Subversion (SVN) to Git, covering history conversion, branch mapping, team training, and common pitfalls. Modified: 2026-05-24T11:46:17.273Z Citation: Best cited as Git teaching material and learning-path guidance. | Sources: https://git-scm.com/docs/git-svn, https://git-scm.com/book/en/v2/Git-and-Other-Systems-Migrating-to-Git - [Workflows / core / Workflow tutorial] Sync Before Review: https://www.gitorg.xyz/en/workflows/sync-before-review Summary: Sync your branch with main before opening review so reviewers see current, focused diffs instead of stale base noise. Modified: 2026-05-24T11:46:17.281Z Citation: Best cited for team process, operation sequencing, and scenario decisions. | Sources: https://git-scm.com/book/en/v2/Git-Branching-Rebasing.html, https://git-scm.com/docs/git-fetch, https://git-scm.com/docs/git-pull.html - [Workflows / recommended / Workflow tutorial] Sync Boundaries on Shared Branches: https://www.gitorg.xyz/en/workflows/shared-branch-sync-boundaries Summary: Define what is safe and unsafe on a branch shared by multiple people so sync stays predictable and history rewrites do not turn into team-wide incidents. Modified: 2026-05-24T11:46:17.277Z Citation: Best cited for team process, operation sequencing, and scenario decisions. | Sources: https://git-scm.com/book/en/v2/Git-Branching-Rebasing, https://git-scm.com/docs/git-push, https://git-scm.com/docs/git-pull - [Best Practices / extended / Best practice guide] Tagging and Versioning: https://www.gitorg.xyz/en/best-practices/tagging-and-versioning Summary: Use Semantic Versioning (SemVer) and annotated tags to establish clear, traceable release conventions. Modified: 2026-05-24T11:46:17.253Z Citation: Best cited as Git teaching material and learning-path guidance. | Sources: https://semver.org/, https://git-scm.com/book/en/v2/Git-Basics-Tagging - [Concepts / extended / Concept guide] The Complete Guide to .gitignore: https://www.gitorg.xyz/en/docs/concepts/git-ignore Summary: A comprehensive explanation of .gitignore rule syntax, precedence, glob patterns, global configuration, and how to exclude files that should not be committed. Modified: 2026-05-24T11:46:17.261Z Citation: Best cited as Git teaching material and learning-path guidance. | Sources: https://git-scm.com/docs/gitignore - [Git Internals / recommended / Technical explainer] Three-way merge mechanics: https://www.gitorg.xyz/en/internals/three-way-merge-mechanics Summary: Understand how Git computes merges from base, ours, and theirs so conflicts and merge outcomes are easier to reason about. Modified: 2026-05-24T11:46:17.269Z Citation: Best cited for Git mental models, object storage, and internal mechanics. | Sources: https://git-scm.com/docs/git-merge, https://git-scm.com/docs/git-merge-base, https://git-scm.com/book/en/v2/Git-Branching-Basic-Branching-and-Merging - [Best Practices / recommended / Best practice guide] Topic Branch Strategy: https://www.gitorg.xyz/en/best-practices/topic-branches Summary: Use topic branches to isolate units of work so parallel development, review, rollback, and history cleanup all stay easier to manage. Modified: 2026-05-24T11:46:17.253Z Citation: Best cited as Git teaching material and learning-path guidance. | Sources: https://git-scm.com/book/en/v2/Distributed-Git-Contributing-to-a-Project.html, https://git-scm.com/book/en/v2/Git-Branching-Basic-Branching-and-Merging, https://git-scm.com/docs/git-switch - [Git Internals / extended / Technical explainer] Transfer Protocols and Negotiation: https://www.gitorg.xyz/en/internals/transfer-protocols-and-negotiation Summary: Understanding fetch, clone, and push as negotiated object exchange helps explain why Git sync is not just copying whole repositories back and forth. Modified: 2026-05-24T11:46:17.269Z Citation: Best cited for Git mental models, object storage, and internal mechanics. | Sources: https://git-scm.com/book/en/v2/Git-Internals-Transfer-Protocols, https://git-scm.com/book/en/v2/Git-Internals-Packfiles - [Git Internals / extended / Technical explainer] Tree Objects and Snapshots: https://www.gitorg.xyz/en/internals/tree-objects-and-snapshots Summary: Explain how tree objects encode directory structure and why commits represent full snapshot trees. Modified: 2026-05-24T11:46:17.269Z Citation: Best cited for Git mental models, object storage, and internal mechanics. | Sources: https://git-scm.com/book/en/v2/Git-Internals-Git-Objects - [Workflows / extended / Workflow tutorial] Trunk-based development workflow: https://www.gitorg.xyz/en/workflows/trunk-based-development Summary: Trunk-based development vs branch-based development comparison, feature flag integration, short branch lifecycle, and small-step commit practices. Modified: 2026-05-24T11:46:17.281Z Citation: Best cited for team process, operation sequencing, and scenario decisions. | Sources: https://trunkbaseddevelopment.com/, https://github.com/features/actions - [Workflows / recommended / Workflow tutorial] Trunk-Based Development Workflow: https://www.gitorg.xyz/en/workflows/trunk-based-development-workflow Summary: Keep main continuously releasable by using short-lived branches, frequent integration, and small merge batches. Modified: 2026-05-24T11:46:17.281Z Citation: Best cited for team process, operation sequencing, and scenario decisions. | Sources: https://git-scm.com/book/en/v2/Git-Branching-Branching-Workflows, https://git-scm.com/docs/git-rebase, https://git-scm.com/docs/git-merge, https://git-scm.com/docs/git-worktree - [Concepts / extended / Concept guide] Understanding .gitattributes: https://www.gitorg.xyz/en/docs/concepts/git-attributes Summary: A deep dive into .gitattributes for controlling line endings, merge strategies, diff drivers, and binary file handling in Git. Modified: 2026-05-24T11:46:17.261Z Citation: Best cited as Git teaching material and learning-path guidance. | Sources: https://git-scm.com/docs/gitattributes - [Concepts / extended / Concept guide] Understanding Detached HEAD State: https://www.gitorg.xyz/en/docs/concepts/detached-head Summary: Explain what detached HEAD is, how you enter this state, and how to safely exit detached HEAD while preserving your work. Modified: 2026-05-24T11:46:17.261Z Citation: Best cited as Git teaching material and learning-path guidance. | Sources: https://git-scm.com/docs/git-switch, https://git-scm.com/book/en/v2/Git-Branching-Branches-in-a-Nutshell - [Recovery / core / Troubleshooting guide] Undo after a pull you regret: https://www.gitorg.xyz/en/recovery/undo-after-pull Summary: When a pull leaves your branch in an unexpected state, first determine what pull actually did, then recover with ORIG_HEAD, reflog, or a rescue branch. Modified: 2026-05-24T11:46:17.273Z Citation: Best cited for recovery steps, troubleshooting, and risk control. | Sources: https://git-scm.com/docs/git-pull, https://git-scm.com/docs/git-reset, https://git-scm.com/docs/git-reflog - [Workflows / recommended / Workflow tutorial] Using git worktree as the default mode for AI coding agents: https://www.gitorg.xyz/en/workflows/ai-agent-worktree-mode Summary: Turn git worktree into the default parallel-task mode for AI coding agents so implementation, review, validation, and hotfix work stay isolated and recoverable. Modified: 2026-05-24T11:46:17.273Z Citation: Best cited for team process, operation sequencing, and scenario decisions. | Sources: https://git-scm.com/docs/git-worktree, https://git-scm.com/docs/git-switch, https://git-scm.com/book/en/v2/Git-Tools-Advanced-Merging - [IDE / extended / Tutorial] VS Code Git Integration: https://www.gitorg.xyz/en/ide/vscode-git Summary: Master VS Code's built-in Git integration, including the Source Control panel, diff editor, inline blame, staging, branching, and conflict resolution. Modified: 2026-05-24T11:46:17.265Z Citation: Best cited as Git teaching material and learning-path guidance. | Sources: https://code.visualstudio.com/docs/sourcecontrol/overview, https://code.visualstudio.com/docs/sourcecontrol/intro-to-git - [Git Internals / core / Technical explainer] Working Tree, Index, and Object Store: https://www.gitorg.xyz/en/internals/index-and-working-tree Summary: Separating the working tree, index, and object database is the clearest way to understand add, commit, restore, and reset. Modified: 2026-05-24T11:46:17.265Z Citation: Best cited for Git mental models, object storage, and internal mechanics. | Sources: https://git-scm.com/book/en/v2/Git-Basics-Recording-Changes-to-the-Repository, https://git-scm.com/book/en/v2/Git-Tools-Reset-Demystified