diff options
Diffstat (limited to 'docs/zh-cn/getting_started_github.md')
-rw-r--r-- | docs/zh-cn/getting_started_github.md | 22 |
1 files changed, 14 insertions, 8 deletions
diff --git a/docs/zh-cn/getting_started_github.md b/docs/zh-cn/getting_started_github.md index 0400eea64..2b2f7a75c 100644 --- a/docs/zh-cn/getting_started_github.md +++ b/docs/zh-cn/getting_started_github.md | |||
@@ -16,17 +16,23 @@ Github can be a little tricky to those that aren't familiar with it - this guide | |||
16 | 16 | ||
17 |  | 17 |  |
18 | 18 | ||
19 | 然后,在命令行输入`git clone `,然后粘贴你的链接: | 19 | 然后,在命令行输入`git clone --recurse-submodules `,然后粘贴你的链接: |
20 | 20 | ||
21 | ``` | 21 | ``` |
22 | user@computer:~$ git clone https://github.com/whoeveryouare/qmk_firmware.git | 22 | user@computer:~$ git clone --recurse-submodules https://github.com/whoeveryouare/qmk_firmware.git |
23 | Cloning into 'qmk_firmware'... | 23 | Cloning into 'qmk_firmware'... |
24 | remote: Counting objects: 46625, done. | 24 | remote: Enumerating objects: 9, done. |
25 | remote: Compressing objects: 100% (2/2), done. | 25 | remote: Counting objects: 100% (9/9), done. |
26 | remote: Total 46625 (delta 0), reused 0 (delta 0), pack-reused 46623 | 26 | remote: Compressing objects: 100% (5/5), done. |
27 | Receiving objects: 100% (46625/46625), 84.47 MiB | 3.14 MiB/s, done. | 27 | remote: Total 183883 (delta 5), reused 4 (delta 4), pack-reused 183874 |
28 | Resolving deltas: 100% (29362/29362), done. | 28 | Receiving objects: 100% (183883/183883), 132.90 MiB | 9.57 MiB/s, done. |
29 | Checking out files: 100% (2799/2799), done. | 29 | Resolving deltas: 100% (119972/119972), done. |
30 | ... | ||
31 | Submodule path 'lib/chibios': checked out '587968d6cbc2b0e1c7147540872f2a67e59ca18b' | ||
32 | Submodule path 'lib/chibios-contrib': checked out 'ede48346eee4b8d6847c19bc01420bee76a5e486' | ||
33 | Submodule path 'lib/googletest': checked out 'ec44c6c1675c25b9827aacd08c02433cccde7780' | ||
34 | Submodule path 'lib/lufa': checked out 'ce10f7642b0459e409839b23cc91498945119b4d' | ||
35 | Submodule path 'lib/ugfx': checked out '3e97b74e03c93631cdd3ddb2ce43b963fdce19b2' | ||
30 | ``` | 36 | ``` |
31 | 37 | ||
32 | 现在你本地计算机有QMK的分叉了,你可以添加你的布局了, 为你的键盘编译并刷新固件吧。如果你觉得你的修改很不错, 你可以添加,提交,然后想你的分叉推出(pull)你的改变,像这样: | 38 | 现在你本地计算机有QMK的分叉了,你可以添加你的布局了, 为你的键盘编译并刷新固件吧。如果你觉得你的修改很不错, 你可以添加,提交,然后想你的分叉推出(pull)你的改变,像这样: |