From dd23dbca73bd817fb54ec8036d36c8d469f9e52e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=B0=8F=E7=89=9B=E4=BB=94?= <126997198+xnz233@users.noreply.github.com> Date: Mon, 16 Jun 2025 18:25:41 +0800 Subject: [PATCH] Update Git.md --- docs/必学工具/Git.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/必学工具/Git.md b/docs/必学工具/Git.md index c8bbfa67..17d3b774 100644 --- a/docs/必学工具/Git.md +++ b/docs/必学工具/Git.md @@ -14,7 +14,7 @@ Git 的设计非常优雅,但初学者通常因为很难理解其内部逻辑 1. 阅读这篇 [Git tutorial](https://missing.csail.mit.edu/2020/version-control/),视频的话可以看这个[尚硅谷Git教程](https://www.bilibili.com/video/BV1vy4y1s7k6) 2. 阅读这本开源书籍 [Pro Git](https://git-scm.com/book/en/v2) 的 Chapter1 - Chapter5,是的没错,学 Git 需要读一本书(捂脸)。 -3. [Learn Git Branching](https://learngitbranching.js.org/) 是一个交互式的 Git 学习平台, 可以帮助你快速上手 Git 的使用。 +3. [Learn Git Branching](https://learngitbranching.js.org/) 是一个交互式的 Git 学习网站, 可以帮助你快速上手 Git 的使用。 4. 此时你已经掌握了 Git 的原理和绝大部分用法,接下来就可以在实践中反复巩固 Git 的命令了。但用好它同样是一门哲学,我个人觉得这篇[如何写好 Commit Message](https://chris.beams.io/posts/git-commit/) 的博客非常值得一读。 5. 好的此时你已经爱上了 Git,你已经不满足于学会它了,你想自己实现一个 Git!巧了,我当年也有这样的想法,[这篇 tutorial](https://wyag.thb.lt/) 可以满足你! 6. 什么?光实现一个 Git 无法满足你?小伙子/小仙女有前途,巧的是我也喜欢造轮子,这两个 GitHub 项目 [build-your-own-x](https://github.com/danistefanovic/build-your-own-x) 和 [project-based-learning](https://github.com/tuvtran/project-based-learning) 收录了你能想到的各种造轮子教程,比如:自己造个编辑器、自己写个虚拟机、自己写个 docker、自己写个 TCP 等等等等。