aboutsummaryrefslogtreecommitdiff
path: root/docs/getting_started_github.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/getting_started_github.md')
-rw-r--r--docs/getting_started_github.md20
1 files changed, 13 insertions, 7 deletions
diff --git a/docs/getting_started_github.md b/docs/getting_started_github.md
index 629f4ece2..07f523f57 100644
--- a/docs/getting_started_github.md
+++ b/docs/getting_started_github.md
@@ -16,17 +16,23 @@ And be sure to select "HTTPS", and select the link and copy it:
16 16
17![HTTPS link](http://i.imgur.com/eGO0ohO.jpg) 17![HTTPS link](http://i.imgur.com/eGO0ohO.jpg)
18 18
19From here, enter `git clone ` into the command line, and then paste your link: 19From here, enter `git clone --recurse-submodules ` into the command line, and then paste your link:
20 20
21``` 21```
22user@computer:~$ git clone --recurse-submodules https://github.com/whoeveryouare/qmk_firmware.git 22user@computer:~$ git clone --recurse-submodules https://github.com/whoeveryouare/qmk_firmware.git
23Cloning into 'qmk_firmware'... 23Cloning into 'qmk_firmware'...
24remote: Counting objects: 46625, done. 24remote: Enumerating objects: 9, done.
25remote: Compressing objects: 100% (2/2), done. 25remote: Counting objects: 100% (9/9), done.
26remote: Total 46625 (delta 0), reused 0 (delta 0), pack-reused 46623 26remote: Compressing objects: 100% (5/5), done.
27Receiving objects: 100% (46625/46625), 84.47 MiB | 3.14 MiB/s, done. 27remote: Total 183883 (delta 5), reused 4 (delta 4), pack-reused 183874
28Resolving deltas: 100% (29362/29362), done. 28Receiving objects: 100% (183883/183883), 132.90 MiB | 9.57 MiB/s, done.
29Checking out files: 100% (2799/2799), done. 29Resolving deltas: 100% (119972/119972), done.
30...
31Submodule path 'lib/chibios': checked out '587968d6cbc2b0e1c7147540872f2a67e59ca18b'
32Submodule path 'lib/chibios-contrib': checked out 'ede48346eee4b8d6847c19bc01420bee76a5e486'
33Submodule path 'lib/googletest': checked out 'ec44c6c1675c25b9827aacd08c02433cccde7780'
34Submodule path 'lib/lufa': checked out 'ce10f7642b0459e409839b23cc91498945119b4d'
35Submodule path 'lib/ugfx': checked out '3e97b74e03c93631cdd3ddb2ce43b963fdce19b2'
30``` 36```
31 37
32You now have your QMK fork on your local machine, and you can add your keymap, compile it and flash it to your board. Once you're happy with your changes, you can add, commit, and push them to your fork like this: 38You now have your QMK fork on your local machine, and you can add your keymap, compile it and flash it to your board. Once you're happy with your changes, you can add, commit, and push them to your fork like this: