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