fix typo in zh_TW

This commit is contained in:
neo.alienson 2023-04-11 00:28:37 +08:00 committed by GitHub
parent 9fc02383dc
commit 7cf4bdc9b4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -491,7 +491,7 @@ exports.level = {
"",
"在這個教學中,我們會學習到如何從 remote repository 來 fetch (抓取)資料,這個指令叫作 `git fetch`。",
"",
"你將會注意到當我們的 remote repository 更新的時候,相對應的 _remote_ branch 也會反該更新,這個跟我們之前所提到的 remote branch 的特性是吻合的。"
"你將會注意到當我們的 remote repository 更新的時候,相對應的 _remote_ branch 也會反該更新,這個跟我們之前所提到的 remote branch 的特性是吻合的。"
]
}
},
@ -521,7 +521,7 @@ exports.level = {
"",
"基本上,`git fetch` 同步了我們的 local repository 以及 remote repository 的最新狀態。",
"",
"假如你還記得之前的教學的話,我們說過 remote branch 反了 remote repository 的狀態,原因在於說你最後接觸的是這些 remote repository而你就是利用 `git fetch` 來接觸這些 remote repository現在 remote branch 跟 `git fetch` 的關係已經很明顯了。",
"假如你還記得之前的教學的話,我們說過 remote branch 反了 remote repository 的狀態,原因在於說你最後接觸的是這些 remote repository而你就是利用 `git fetch` 來接觸這些 remote repository現在 remote branch 跟 `git fetch` 的關係已經很明顯了。",
"",
"`git fetch` 通常是透過網路來跟 remote 溝通(透過一個 protocol (協定),例如 `http://` 或者是 `git://`)。",
""