-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
executable file
·250 lines (211 loc) · 6.14 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
#!/usr/bin/env node
const { program } = require('commander');
const simpleGit = require('simple-git/promise');
const git = simpleGit();
const pkg = require('./package.json');
const { version } = pkg
const FEATURE = 'feature'
const RELEASE = 'release'
const HOTFIX = 'hotfix'
const BUGFIX = 'bugfix'
const actions = ['start', 'finish', 'publish']
// help options
program
.version(version)
.option('-t --tag <tag>', 'add a tag base master')
.option('--no-tag', 'not add a tag when release finish/publish.')
.option('-h --help', 'help');
// test
program.command('test <name>').action(async (name) => {
const res = await git.status();
console.log(res.isClean());
console.log(program.tag)
console.log('\n Please input branch name!\n');
});
// feature
program.command('feature <action> <name>').action(async (action, name) => {
try {
// TODO: 判断参数
if (!validateArgvs(action)) {
return;
}
const isClean = await isStatusClean();
if(action !== 'start' && !isClean) {
console.log('\n Please commit your changes then try again!\n');
return;
}
if (action === 'start') {
// feature start
checkoutNewBranch(`${FEATURE}/${name}`);
} else if (action === 'finish') {
featureFinish(`${FEATURE}/${name}`);
} else if (action === 'publish') {
featureFinish(`${FEATURE}/${name}`);
await git.push();
deleteRemoteBranch(`${FEATURE}/${name}`);
}
} catch(ex) {
console.log(ex)
}
});
// release
program.command('release <action> <name>').action(async (action, name) => {
try {
// // TODO: 判断参数
// if (!actions.includes(action)) {
// console.log('\n Please enter a correct action name!\n');
// return;
// }
if (!validateArgvs(action)) {
return;
}
const isClean = await isStatusClean();
if(!isClean) {
console.log('\n Please commit your changes then try again!\n');
return;
}
if (action === 'start') {
checkoutNewBranch(`${RELEASE}/${name}`);
} else if (action === 'finish') {
await deployProd(RELEASE, name);
// 默认会打tag
await addTag(name);
} else if (action === 'publish') {
await deployProd(RELEASE,name);
await git.push('origin', 'master');
await git.push('origin', 'develop');
// 默认会打tag
await addTag(name);
await git.pushTags();
deleteRemoteBranch(`${RELEASE}/${name}`);
}
} catch(ex) {
console.log(ex)
}
});
// hotfix
program.command('hotfix <action> <name>').action(async (action, name) => {
try {
// TODO: 判断参数
if (!validateArgvs(action)) {
return;
}
const isClean = await isStatusClean();
// 新开分支时不报错
if(action !== 'start' && !isClean) {
console.log('\n Please commit your changes then try again!\n');
return;
}
if (action === 'start') {
checkoutNewBranch(`${HOTFIX}/${name}`, 'master');
} else if (action === 'finish') {
await deployProd(HOTFIX, name);
// 默认会打tag
await addTag(name);
} else if (action === 'publish') {
await deployProd(HOTFIX, name);
await git.push('origin', 'master');
await git.push('origin', 'develop');
// 默认会打tag
await addTag(name);
await git.pushTags();
deleteRemoteBranch(`${HOTFIX}/${name}`);
}
} catch(ex) {
console.log(ex)
}
});
// bugfix
program.command('bugfix <action> <name>').action(async (action, name) => {
try {
// TODO: 判断参数
if (!validateArgvs(action)) {
return;
}
const isClean = await isStatusClean();
if(action !== 'start' && !isClean) {
console.log('\n Please commit your changes then try again!\n');
return;
}
if (action === 'start') {
// feature start
checkoutNewBranch(`${BUGFIX}/${name}`);
} else if (action === 'finish') {
featureFinish(`${BUGFIX}/${name}`);
} else if (action === 'publish') {
featureFinish(`${BUGFIX}/${name}`);
await git.push();
deleteRemoteBranch(`${BUGFIX}/${name}`);
}
} catch(ex) {
console.log(ex)
}
});
function validateArgvs (action) {
if (!actions.includes(action)) {
console.log('\n Please enter a correct action name! \n');
return false;
}
return true;
}
async function checkoutNewBranch(targetName, base = 'develop'){
await git.checkout(base);
await git.pull();
await git.checkout(['-B', targetName]);
await git.push(['-u', `origin`, targetName]);
console.log(`Checkout to ${targetName} base ${base}`);
}
async function featureFinish(featureName){
await git.checkout('develop');
await git.pull();
const mergeSummary = await git.merge([featureName]);
if (mergeSummary.failed) {
console.error(`Merge resulted in ${ mergeSummary.conflicts.length } conflicts`);
return;
}
console.log(`develop merged ${featureName}!`);
}
async function isStatusClean(){
const status = await git.status();
const isClean = status.isClean()
return isClean;
}
async function deployProd(branch , name){
await git.checkout('master');
await git.pull();
const mergeSummary = await git.merge([`${branch}/${name}`]);
if (mergeSummary.failed) {
console.error(`Merge resulted in ${ mergeSummary.conflicts.length } conflicts`);
return;
}
// await git.push();
console.log(`master merged ${branch}/${name}!`);
await git.checkout('develop');
await git.pull();
const mergeSummary2 = await git.merge([`${branch}/${name}`]);
if (mergeSummary2.failed) {
console.error(`Merge resulted in ${ mergeSummary2.conflicts.length } conflicts`);
return;
}
// await git.push();
console.log(`develop merged ${branch}/${name}!`);
}
async function deleteRemoteBranch(name){
await git.push(['origin', `:${name}`]);
console.log(`The remote branch ${name} has been deleted!`)
}
async function addTag(name){
// 如果传了: --no-tag,则不打tag
if (program.tag === false) {
return;
}
let tagName = name;
// 如果有-t参数名称,tagName取传进来的值
if(program.tag) {
tagName = program.tag
}
// 打tag
await git.tag([tagName, 'master', '-f']);
console.log(`added tag ${tagName} base master!`);
}
program.parse(process.argv)