我找到了很好的项目(样板文件),我将把它作为项目的起点。 我分叉了。
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中的所有更新应用到我的本地克隆?