8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5310f3f commit 7445ee7Copy full SHA for 7445ee7
git.js
@@ -19,21 +19,21 @@ function updateCode({ commit = "update" } = {}) {
19
}
20
21
function checkoutBranch({ branch }) {
22
- // updateCode();
+ updateCode();
23
execSync(`git checkout ${branch}`);
24
execSync(`git pull origin ${branch}`);
25
26
27
function feature({ feature }) {
28
29
const dateStr = utils.getDateStr();
30
const branch = `feature/${dateStr}-${feature}`;
31
execSync(`git checkout -b ${branch}`);
32
execSync(`git push origin ${branch}`);
33
34
35
function release({ release }) {
36
37
const version = utils.getVersion();
38
const branch = `${release}${version}`;
39
0 commit comments