finish start

This commit is contained in:
rkiel
2019-07-14 16:36:15 -04:00
parent 48f2d0ead0
commit 6d41728543

View File

@@ -80,7 +80,7 @@ function gitBranch(dp) {
} }
function gitCheckout(dp) { function gitCheckout(dp) {
const cmd = `git checkout --track origin/${dp.featureBranch}`; const cmd = `git checkout ${dp.featureBranch}`;
console.log(cmd); console.log(cmd);
return exec(cmd).then(x => dp); return exec(cmd).then(x => dp);
} }