Skip to content

Commit 7966926

Browse files
committed
typo fixed
1 parent f60c779 commit 7966926

File tree

2 files changed

+13
-13
lines changed

2 files changed

+13
-13
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1350,13 +1350,13 @@ git grep "hello"
13501350

13511351
由於這個內容稍微比較多,所以我另外寫了一篇,
13521352

1353-
* [Youtube Tutorial PART 1 - git Submodule tutorial - how create submodule](https://youtu.be/IDMWLJCbCGo)
1353+
* [Youtube Tutorial PART 1 - git Submodule tutorial - how to create submodule](https://youtu.be/IDMWLJCbCGo)
13541354

1355-
* [Youtube Tutorial PART 2 - git Submodule tutorial - how update submodule](https://youtu.be/ogZoZOVyAYI)
1355+
* [Youtube Tutorial PART 2 - git Submodule tutorial - how to update submodule](https://youtu.be/ogZoZOVyAYI)
13561356

1357-
* [Youtube Tutorial PART 3 - git Submodule tutorial - how clone submodule](https://youtu.be/f5_O5Iu6pJo)
1357+
* [Youtube Tutorial PART 3 - git Submodule tutorial - how to clone submodule](https://youtu.be/f5_O5Iu6pJo)
13581358

1359-
* [Youtube Tutorial PART 4 - git Submodule tutorial - how remove submodule](https://youtu.be/imndFN7AvFA)
1359+
* [Youtube Tutorial PART 4 - git Submodule tutorial - how to remove submodule](https://youtu.be/imndFN7AvFA)
13601360

13611361
[git Submodule tutorial :memo:](https://github.com/twtrubiks/Git-Tutorials/blob/master/git_submodule_turorial.md)
13621362

git_submodule_turorial.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# git Submodule tutorial :memo:
22

3-
手把手帶大家動手做 [Youtube Tutorial PART 1 - git Submodule tutorial - how create submodule](https://youtu.be/IDMWLJCbCGo)
3+
手把手帶大家動手做 [Youtube Tutorial PART 1 - git Submodule tutorial - how to create submodule](https://youtu.be/IDMWLJCbCGo)
44

55
git Submodule 的官方文件可參考 [git-submodule](https://git-scm.com/docs/git-submodule/)
66

@@ -44,9 +44,9 @@ git Submodule 的官方文件可參考 [git-submodule](https://git-scm.com/docs/
4444

4545
既然了解了使用情境,那我們就來看看它該怎麼使用:satisfied:
4646

47-
## how create submodule
47+
## how to create submodule
4848

49-
手把手帶大家動手做 [Youtube Tutorial PART 1 - git Submodule tutorial - how create submodule](https://youtu.be/IDMWLJCbCGo)
49+
手把手帶大家動手做 [Youtube Tutorial PART 1 - git Submodule tutorial - how to create submodule](https://youtu.be/IDMWLJCbCGo)
5050

5151
先介紹一下 repo ,這邊有兩個 repo,分別為 main_project repo 以及 a_project repo,
5252

@@ -129,9 +129,9 @@ push 之後,可以到 github 網頁上看,
129129

130130
學習完了如何建立 Submodule,接下來來看看如何更新 Submodule。
131131

132-
## how update submodule
132+
## how to update submodule
133133

134-
手把手帶大家動手做 [Youtube Tutorial PART 2 - git Submodule tutorial - how update submodule](https://youtu.be/ogZoZOVyAYI)
134+
手把手帶大家動手做 [Youtube Tutorial PART 2 - git Submodule tutorial - how to update submodule](https://youtu.be/ogZoZOVyAYI)
135135

136136
假設 a_project repo 也是我們自己維護的,當我們對它更新時,會發生什麼事情:question:
137137

@@ -237,9 +237,9 @@ the current branch of the submodule will be rebased onto the commit recorded in
237237

238238
這種作法更方便,也解決了 **HEAD detached** 的問題 :thumbsup:
239239

240-
## how clone submodule
240+
## how to clone submodule
241241

242-
手把手帶大家動手做 [Youtube Tutorial PART 3 - git Submodule tutorial - how clone submodule](https://youtu.be/f5_O5Iu6pJo)
242+
手把手帶大家動手做 [Youtube Tutorial PART 3 - git Submodule tutorial - how to clone submodule](https://youtu.be/f5_O5Iu6pJo)
243243

244244
這邊教大家如何 clone Submodule 的專案,執行一般的 clone 指令,
245245

@@ -311,9 +311,9 @@ git clone --recurse-submodules git@github.com:blue-rubiks/main_project.git
311311

312312
但通常我們應該是不會一開始就知道這個專案有包含 submodule。
313313

314-
### how remove submodule
314+
### how to remove submodule
315315

316-
手把手帶大家動手做 [Youtube Tutorial PART 4 - git Submodule tutorial - how remove submodule](https://youtu.be/imndFN7AvFA)
316+
手把手帶大家動手做 [Youtube Tutorial PART 4 - git Submodule tutorial - how to remove submodule](https://youtu.be/imndFN7AvFA)
317317

318318
要移除 submodule 的步驟比較多,這邊教大家如何移除,
319319

0 commit comments

Comments
 (0)