From 81d372f1ae3045a42a77ef9d2d71e20fb48db7d5 Mon Sep 17 00:00:00 2001 From: Peter Cottle Date: Mon, 30 Nov 2015 10:39:17 -0800 Subject: [PATCH] Resolves #246 teach -b option --- src/levels/intro/branching.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/levels/intro/branching.js b/src/levels/intro/branching.js index 07b9e8d9..b6caf094 100644 --- a/src/levels/intro/branching.js +++ b/src/levels/intro/branching.js @@ -103,7 +103,11 @@ exports.level = { "options": { "markdowns": [ "Ok! You are all ready to get branching. Once this window closes,", - "make a new branch named `bugFix` and switch to that branch" + "make a new branch named `bugFix` and switch to that branch.", + "", + "By the way here here's a shortcut: if you want to create a new ", + "branch AND check it out at the same time, you can simply ", + "type `git checkout -b [yourbranchname]`." ] } }