Commit 553c2e33d0f885f059b730e4647d197d5c4ed5f4
1 parent
a0281788e6
more readme love
Showing 1 changed file with 16 additions and 14 deletions Side-by-side Diff
README.md
| ... | ... | @@ -12,20 +12,22 @@ |
| 12 | 12 | 1. Create a new repository on GitHub as your user for your Boxen. (eg. |
| 13 | 13 | `wfarr/my-boxen`). **Make sure it is a private repository!** for now |
| 14 | 14 | 1. Get running like so: |
| 15 | - | |
| 16 | -``` | |
| 17 | -mkdir -p ~/src/my-boxen | |
| 18 | -cd ~/src/my-boxen | |
| 19 | -git init | |
| 20 | -git remote add upstream https://github.com/boxen/our-boxen | |
| 21 | -git fetch upstream | |
| 22 | -git co -b master upstream/master | |
| 23 | -git remote add origin https://github.com/wfarr/my-boxen | |
| 24 | -git push origin master | |
| 25 | - | |
| 26 | -script/boxen | |
| 27 | -``` | |
| 28 | -1. Close and reopen your Terminal. If you have a shell config file (eg. `~/.bashrc`) you'll need to add this at the very end: `[ -f /opt/boxen/env.sh ] && source /opt/boxen/env.sh`, | |
| 15 | + ``` | |
| 16 | + mkdir -p ~/src/my-boxen | |
| 17 | + cd ~/src/my-boxen | |
| 18 | + git init | |
| 19 | + git remote add upstream https://github.com/boxen/our-boxen | |
| 20 | + git fetch upstream | |
| 21 | + git co -b master upstream/master | |
| 22 | + git remote add origin https://github.com/wfarr/my-boxen | |
| 23 | + git push origin master | |
| 24 | + | |
| 25 | + script/boxen | |
| 26 | + ``` | |
| 27 | +1. Close and reopen your Terminal. If you have a shell config file | |
| 28 | +(eg. `~/.bashrc`) you'll need to add this at the very end: | |
| 29 | +`[ -f /opt/boxen/env.sh ] && source /opt/boxen/env.sh`, and reload | |
| 30 | +your shell. | |
| 29 | 31 | 1. Confirm the Boxen env has loaded: `boxen --env` |
| 30 | 32 | |
| 31 | 33 | Now you have your own my-boxen repo that you can hack on. |