1

我们有一个主repo名称AppDev,我们将它分叉,我也克隆到我的本地系统。

每次我以以下方式提交更新的代码时。

localsystem(Clone)-->forkedRepo/particularbranch

git add file
git commit -m "Comment"
git push origin

运行上述命令后,我将更新的代码放入我的分叉存储库中。

知道我想将拉取请求从 发送forkedrepo/particulareBranchmain(AppDev)repo/particulareBranch

我知道,如何通过网页来做到这一点。但我想通过发送拉取请求Git Power shell

任何人都可以建议我使用相应的命令。

谢谢。

4

1 回答 1

1

您可以使用git request-pull不是 Powershell 特定的。

假设您在分叉的仓库中,该命令将是:

git push # must push into the public repo
git request-pull origin/master forkedRepo/particularbranch 

然后,您将该命令的输出发送/通过电子邮件发送给原始维护者,其中包含提交拉取请求所需的所有信息。

于 2013-09-16T14:14:01.570 回答