From 4d1599b1677e52668aa653fa3bc00e9b65bf77bc Mon Sep 17 00:00:00 2001 From: Josh Nichols Date: Thu, 11 Oct 2012 22:49:15 -0400 Subject: [PATCH] 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. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 7491ee5..f856516 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ This repository template is just a basic example of _how_ to do things with them git init git remote add upstream https://github.com/boxen/our-boxen git fetch upstream - git co -b master upstream/master + git checkout -b master upstream/master git remote add origin https://github.com/wfarr/my-boxen git push origin master