使用命令行

时间:2017-12-27 15:43:02

标签: command-line git-bash

目前,每次我想发布合并请求时,我都会提交更改并将其推送到网上

git commit -am 'My changes'
git push origin my_branch:my_branch

然后在Gitlab上,手动,我发出合并请求并分配CTO。

如何直接从bash创建合并请求并分配CTO?

我知道存在以下答案Is it possible to create merge requests in pure Git from the command line?,但这并没有回答我的问题。

如何创建从my_branch到主控的合并请求? 我可以git --assign=CTO request-pull my_branch master吗?

1 个答案:

答案 0 :(得分:0)

使用push options。这是一个例子。

git push -o merge_request.create -o merge_request.assign="CTO"