search

Home  >  Q&A  >  body text

git - How to perform version management based on secondary development of open source projects

Question: The project team wants to customize an open source project on GitHub. How can we ensure that when the version of the open source project is updated, how can our local clone version be merged?

phpcn_u1582phpcn_u15822795 days ago935

reply all(1)I'll reply

  • 仅有的幸福

    仅有的幸福2017-05-02 09:31:06

    Tell me your own method and give some advice:

    1. Fork open source projects to your own github

    2. clone fork future projects locally

    3. Use the git remote add command to add the open source project as a remote repository, for example, named fork

    In this way, you have two remotes, one origin (for your own fork) and one fork (for the open source project).
    Your own changes are directly pushed to the master. You need to merge the updates of the open source project for usegit pull fork master. After merging the code, push it to your own. master

    reply
    0
  • Cancelreply