gerson
2024-12-22 0eaeaa7b3c0b3f5106e1f4279465fa71d1a838f6
1
2
3
4
5
6
const { execSync } = require('child_process');
 
// 合并测试分支到主分支
try {
    execSync('git merge test master', { stdio: 'inherit' });
} catch (error) {}