将单个文件从克隆的repo推送到forked repo

时间:2013-02-01 20:17:28

标签: git github push repository

好的,我在我的本地机器上有一个克隆的github repo,在我的github帐户中有另一个分叉的github repo。 我想将我克隆的本地仓库中的文件推送到我的分叉仓库。我需要将它推到同一个位置(例如我本地仓库中的文件位于/ folder1 / folder2中,我必须在/ folder1 / folder2中的forked repo中推送它)。现在有人有办法做到这一点吗?

谢谢!

1 个答案:

答案 0 :(得分:1)

您可以克隆您的分叉,并Justin ᚅᚔᚈᚄᚒᚔ comments,添加,提交和推送。

如果你尝试从当前的本地克隆推送,它的主要远程地址('origin')引用第一个GitHub仓库,而不是你的分支。

但你可以从同一个仓库中做到这一点,在你当前的本地克隆中添加你的fork的地址:

git remote add fork https://github.com/user/myFork

,推到那里:

git push fork master.

enter image description here

另请参阅“What is the difference between origin and upstream in github”。