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