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