标签: git gitlab pull-request merge-request
我从上游存储库(git checkout -b mybranch upstreamTag)中包含的标记创建了一个新的本地分支。我将本地分支机构推送到派生的仓库(git push -u origin mybranch)。现在如何将GitLab合并请求提交到上游仓库?如果我的分支是从上游分支创建的,我知道该怎么做,但是如何引用上游标签?
git checkout -b mybranch upstreamTag
git push -u origin mybranch