aboutsummaryrefslogtreecommitdiff
path: root/docs/getting_started_github.md
diff options
context:
space:
mode:
authorEvan Travers <evantravers@gmail.com>2018-07-16 00:23:22 -0400
committerDrashna Jaelre <drashna@live.com>2018-07-15 21:23:22 -0700
commitf2fcffab0d511eee2ea01151b1cd9a1ead0bb557 (patch)
treef10a6ebf68d901ee069d5e0f743554546ae54e75 /docs/getting_started_github.md
parentaa62b60eaf85b0f6a5e5edec4fc06c81f119d2f5 (diff)
downloadqmk_firmware-f2fcffab0d511eee2ea01151b1cd9a1ead0bb557.tar.gz
qmk_firmware-f2fcffab0d511eee2ea01151b1cd9a1ead0bb557.zip
Docs: Adjust prompt to be more recognizable (#3417)
Diffstat (limited to 'docs/getting_started_github.md')
-rw-r--r--docs/getting_started_github.md10
1 files changed, 4 insertions, 6 deletions
diff --git a/docs/getting_started_github.md b/docs/getting_started_github.md
index 7ce65e210..7a3531c75 100644
--- a/docs/getting_started_github.md
+++ b/docs/getting_started_github.md
@@ -19,8 +19,7 @@ And be sure to select "HTTPS", and select the link and copy it:
19From here, enter `git clone ` into the command line, and then paste your link: 19From here, enter `git clone ` into the command line, and then paste your link:
20 20
21``` 21```
22**[terminal] 22user@computer:~$ git clone https://github.com/whoeveryouare/qmk_firmware.git
23**[prompt you@computer]**[path ~]**[delimiter $ ]**[command git clone https://github.com/whoeveryouare/qmk_firmware.git]
24Cloning into 'qmk_firmware'... 23Cloning into 'qmk_firmware'...
25remote: Counting objects: 46625, done. 24remote: Counting objects: 46625, done.
26remote: Compressing objects: 100% (2/2), done. 25remote: Compressing objects: 100% (2/2), done.
@@ -33,13 +32,12 @@ Checking out files: 100% (2799/2799), done.
33You 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: 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:
34 33
35``` 34```
36**[terminal] 35user@computer:~$ git add .
37**[prompt you@computer]**[path ~/qmk_firmware]**[delimiter $ ]**[command git add .] 36user@computer:~$ git commit -m "adding my keymap"
38**[prompt you@computer]**[path ~/qmk_firmware]**[delimiter $ ]**[command git commit -m "adding my keymap"]
39[master cccb1608] adding my keymap 37[master cccb1608] adding my keymap
40 1 file changed, 1 insertion(+) 38 1 file changed, 1 insertion(+)
41 create mode 100644 keyboards/planck/keymaps/mine/keymap.c 39 create mode 100644 keyboards/planck/keymaps/mine/keymap.c
42**[prompt you@computer]**[path ~/qmk_firmware]**[delimiter $ ]**[command git push] 40user@computer:~$ git push
43Counting objects: 1, done. 41Counting objects: 1, done.
44Delta compression using up to 4 threads. 42Delta compression using up to 4 threads.
45Compressing objects: 100% (1/1), done. 43Compressing objects: 100% (1/1), done.