使用功能分支工作时,如何配置我的 bitbucket-pipeline.yml 文件以使更改自动合并到主分支?
问问题
613 次
1 回答
1
这就是我为将分支合并到 master 所做的工作
#fetch from all branches and mock a user to perform the merge
- git config remote.origin.fetch "+refs/heads/*:refs/remotes/origin/*"
\ && git config user.email "git@example.com"
\ && git config user.name "git"
- git fetch origin && git checkout origin/master
- git merge $BITBUCKET_BRANCH
最后,如果您想提交合并,您应该git push
在脚本末尾添加一个命令,可能使用存储库的真实帐户。
编辑
于 2018-10-29T14:12:30.687 回答