mirror of
https://github.com/pcottle/learnGitBranching.git
synced 2025-06-28 17:00:04 +02:00
fix some typo
This commit is contained in:
parent
4261560f4b
commit
0928f76f71
15 changed files with 54 additions and 54 deletions
|
@ -5,7 +5,7 @@ exports.level = {
|
|||
"en_US": "Clone Intro",
|
||||
"de_DE": "Clone Einführung",
|
||||
"zh_CN": "Clone Intro",
|
||||
"zh_TW": "介紹 Clone"
|
||||
"zh_TW": "介紹 clone"
|
||||
},
|
||||
"hint": {
|
||||
"en_US": "Just git clone!",
|
||||
|
@ -79,13 +79,13 @@ exports.level = {
|
|||
"markdowns": [
|
||||
"## Git Remotes",
|
||||
"",
|
||||
"Remote (遠端) repository 並不會很難了解. 藉由現在的雲端運算,可以很輕易地了解到在 git remotes 裡面有很多有趣的事情,但它們其實其實就只是你的或者是其它電腦上的 repository 的副本。你可以輕易地透過網路去發送你的 commit 給其它的電腦。",
|
||||
"remote (遠端) repository 並不會很難了解. 藉由現在的雲端運算,可以很輕易地了解到在 git remote 裡面有很多有趣的事情,但它們其實其實就只是你的或者是其它電腦上的 repository 的副本。你可以輕易地透過網路去發送你的 commit 給其它的電腦。",
|
||||
"",
|
||||
"也就是說, remote repository 有很多有趣的地方:",
|
||||
"",
|
||||
"- 第一,remote 是用來備份的! 本地端的 git 有能力可以回復文件到前一個狀態 (你知道的),但是全部的資訊還是儲存在本地端。如果你在其它的電腦上面有你的 git repository 的副本,則你可以在資料不小心遺失的時候進行救援備份",
|
||||
"",
|
||||
"- 更重要的是, remotes 讓大家一起來 coding!現在你的 project 放在 remote 上面,你的朋友可以很容易地對你的 project 做出貢獻(或者是 pull 你最後的修改) 。",
|
||||
"- 更重要的是, remote 讓大家一起來 coding!現在你的 project 放在 remote 上面,你的朋友可以很容易地對你的 project 做出貢獻(或者是 pull 你最後的修改) 。",
|
||||
"",
|
||||
"使用網站去對 remote repository 做視覺化非常流行(例如 [Github](https://github.com/) 或者是 [Phabricator](http://phabricator.org/)),但這背後最大的功臣是 remote repository,因此我們務必要了解它。"
|
||||
]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue