From 4e9b9d587bb9717b7e2453d59e11ec745a2095a9 Mon Sep 17 00:00:00 2001 From: Lucidity <2993514952@qq.com> Date: Thu, 12 May 2022 12:07:52 +0800 Subject: [PATCH] add a video link in Git.md --- docs/必学工具/Git.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/必学工具/Git.md b/docs/必学工具/Git.md index dd857c2b..e8eeffe0 100644 --- a/docs/必学工具/Git.md +++ b/docs/必学工具/Git.md @@ -12,7 +12,7 @@ Git 的设计非常优雅,但初学者通常因为很难理解其内部逻辑 和 Vim 不同,我不建议初学者在一知半解的情况下贸然使用 Git,因为它的内部逻辑并不能熟能生巧,而是需要花时间去理解。我推荐的学习路线如下: -1. 阅读这篇 [Git tutorial](https://missing.csail.mit.edu/2020/version-control/)。 +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. 此时你已经掌握了 Git 的原理和绝大部分用法,接下来就可以在实践中反复巩固 Git 的命令了。但用好它同样是一门哲学,我个人觉得这篇[如何写好 Commit Message](https://chris.beams.io/posts/git-commit/) 的博客非常值得一读。 4. 好的此时你已经爱上了 Git,你已经不满足于学会它了,你想自己实现一个 Git!巧了,我当年也有这样的想法,[这篇 tutorial](https://wyag.thb.lt/) 可以满足你!