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