Commit 4d1599b1677e52668aa653fa3bc00e9b65bf77bc
1 parent
6e1bd53216
Update git command in README
Even though a lot of people setup `git co`, it's not available on a fresh install. Makes copy-pasta for creating my-boxen easier.
Showing 1 changed file with 1 additions and 1 deletions Side-by-side Diff
README.md
... | ... | @@ -18,7 +18,7 @@ |
18 | 18 | git init |
19 | 19 | git remote add upstream https://github.com/boxen/our-boxen |
20 | 20 | git fetch upstream |
21 | - git co -b master upstream/master | |
21 | + git checkout -b master upstream/master | |
22 | 22 | git remote add origin https://github.com/wfarr/my-boxen |
23 | 23 | git push origin master |
24 | 24 |