【发布时间】:2018-06-08 06:11:10
【问题描述】:
此刻,每次我想发出合并请求时,我都会提交我的更改并将其推送到网上
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 到 master 的合并请求?
我可以git --assign=CTO request-pull my_branch master吗?
【问题讨论】:
-
您可以查看 github.com/vishwanatharondekar/gitlab-cli 是否符合您的要求,包括受让人支持。
标签: command-line git-bash