From 553c2e33d0f885f059b730e4647d197d5c4ed5f4 Mon Sep 17 00:00:00 2001 From: Will Farrington Date: Tue, 9 Oct 2012 09:45:16 -1000 Subject: [PATCH] more readme love --- README.md | 30 ++++++++++++++++-------------- 1 file changed, 16 insertions(+), 14 deletions(-) diff --git a/README.md b/README.md index ffd0459..d3502e8 100644 --- a/README.md +++ b/README.md @@ -12,20 +12,22 @@ This repository template is just a basic example of _how_ to do things with them 1. Create a new repository on GitHub as your user for your Boxen. (eg. `wfarr/my-boxen`). **Make sure it is a private repository!** for now 1. Get running like so: - -``` -mkdir -p ~/src/my-boxen -cd ~/src/my-boxen -git init -git remote add upstream https://github.com/boxen/our-boxen -git fetch upstream -git co -b master upstream/master -git remote add origin https://github.com/wfarr/my-boxen -git push origin master - -script/boxen -``` -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`, + ``` + mkdir -p ~/src/my-boxen + cd ~/src/my-boxen + git init + git remote add upstream https://github.com/boxen/our-boxen + git fetch upstream + git co -b master upstream/master + git remote add origin https://github.com/wfarr/my-boxen + git push origin master + + script/boxen + ``` +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`, and reload +your shell. 1. Confirm the Boxen env has loaded: `boxen --env` Now you have your own my-boxen repo that you can hack on.