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