From 6d41728543f03bc1185f88019a19e91ebefd2c48 Mon Sep 17 00:00:00 2001 From: rkiel Date: Sun, 14 Jul 2019 16:36:15 -0400 Subject: [PATCH] finish start --- bin/creature-start | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/creature-start b/bin/creature-start index 0090bd8..36db960 100755 --- a/bin/creature-start +++ b/bin/creature-start @@ -80,7 +80,7 @@ function gitBranch(dp) { } function gitCheckout(dp) { - const cmd = `git checkout --track origin/${dp.featureBranch}`; + const cmd = `git checkout ${dp.featureBranch}`; console.log(cmd); return exec(cmd).then(x => dp); }