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