求教Github pull request问题。
曾经蜡笔没有小新
曾经蜡笔没有小新 2017-05-02 09:20:27
0
2
552

新手求教个Github pull request的问题。

Python的开源博客Pelican有一个官方的主题repo pelican-themes,里面有好多主题。现在我自己做了一个主题,建了个repo t,我想把我的主题提交到官方主题库中,应该怎么做?

我自己想的应该先fork下来官方的库,把自己的代码添加到fork下来的库中,push提交后,发送一个pull request,等待审核。在这里有一个问题,如果我想再次修改代码是不是应该只能在fork下来的库中修改而不是自己键的库t中修改,那t中的代码和fork库中的代码如何同步?或者怎样只修改t中的代码,同时fork库中的代码也被修改?

这是官方库的地址:pelican-themes


更新:
这个问题确实是像allenfantasy同学说的子模块问题,即把一个项目当成另一个项目的子模块进行管理,同时当子模块的git项目代码有更新,可以拉取更新到主项目的子模块目录来。反过来,当主项目的子子模块目录有变更,还可以推送这些变更到子模块的git项目。
具体可以使用git submodule或者git subtree进行处理。而git submodule看上去就给人感觉特别麻烦,坑也个别多,git subtree用起来相对简单,看上去清晰明了。
具体参见处理方法git subtree。

曾经蜡笔没有小新
曾经蜡笔没有小新

reply all(2)
曾经蜡笔没有小新

This is an example of one project nested within another project. If you look at the repo of pelican-themes, you will know that you can use git submodule to solve the problem.

Submodule is a very complicated thing for me. I don’t dare to talk about it here. You can read the explanation here

阿神

Fork is to copy a repo from another repo to the repo under your account. Your local repo is local.
The correct way is to clone your own fork to the repo of your account, turn it into a local repo, then add the theme file you made yourself, then push it to github, and then request a pull request.
Modify again, or change your local t, the same push, the same pull request.

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!