7

我试图为此寻找答案,但找不到直接的答案。

我正在运行下面的代码。

git fetch upstream  # get the latest copy from master / upstream
git merge upstream/master  # merge the downloaded copies and merge to your copy
git commit -am"test"  # commit your latest changes
git push origin master  # push to your fork
git push upstream  # push to master copy from where you forked your project - is this safe?

推送到上游(git push upstream)是否安全?我的主要目标是将我的更改从我的 fork 应用到主项目。还是有更好的方法?谢谢

4

2 回答 2

2

这取决于您是否有权推送。如果还没有,请让上游存储库的所有者从您的 fork 中提取。

于 2012-10-16T08:16:02.383 回答
0

由于您已将此问题标记为 GitHub,因此我假设您希望将更改推送到您的 fork,然后从 GitHub 的 UI 发出拉取请求。Git 没有用于发出拉取请求的命令行选项。

您可以在https://help.github.com/articles/using-pull-requests阅读更多内容

于 2012-10-16T08:17:51.653 回答