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