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