如何在github上更新fork

时间:2017-02-04 21:34:14

标签: github git-fork

我找到了很好的项目(样板文件),我将把它作为项目的起点。 我分叉了。

git clone https://github.com/fork.git forkdirectory  # clone my fork to my local PC
git branch mybranch #  create new branch for my specialities, which will be different from boilerplate
git checkout steklo  # change the branch, which I will work on by default 

然后我做了一些更改并检查它们是否出现在我的叉子中

git add . # add all changes for commit 
git commit -m"commit comments"  # make commit
git push -u origin mybranch # push changes to mybranch 

我测试了下次更改我可以做的更短

git push

但是当我看到更新的初始样板时,我该怎么办?

1)如何将所有更新应用到我的fork?

2)然后如何将我的fork中的所有更新应用到我的本地克隆?

1 个答案:

答案 0 :(得分:0)

我想我理解你对它的困惑,

此流程步骤

  1. 分叉存储库。
  2. 更新存储库。
  3. 创建拉取请求
  4. 现在,存储库的所有者看到,如果您的请求有效,他会合并请求。
  5. 您已经完成了前两个步骤,现在您只需要提交拉取请求。

    转到您的分叉回购的请求

    enter image description here

    创建新的提款请求

    enter image description here

    所有者将查看它是否有效然后他将您的拉取请求合并到回购 enter image description here

    就是这样 干杯:)