Fork (github process)

Today just getting started with Baidu AI, so that a project Fork
Here Insert Picture Description

Title thought fork on github summarized as follows

Now there is such a situation:

There is a program called the Joe ape to write a game program, and you might be going to improve it. Joe and his code in a repository on GitHub.

Here's what you need to do
Here Insert Picture Description

fork and update the chart demonstrates GitHub repository

  • Fork his warehouse
    which is GitHub operation, this operation will copy Joe warehouses (including documents, commit history, issues, and the rest something). After copying the warehouse under your own GitHub account. Currently, your local computer without any action on this warehouse.
  • Clone your repository:
    This is the Git operations. This operation allows you to send "Please send me a copy of the document repository me" command to GitHub. Now the warehouse will be stored on your local computer.
  • Update some files:
    You can now update the warehouse of documents under any program or environment.

Submit your changes: This is the Git operations. This operation allows you to send a "record my change" in order to GitHub. This operation is only done on your local computer.

  • The push your changes to your GitHub repository
    which is Git operations. This operation allows you to send "This is my revised" information to GitHub. Push operation will not be done automatically, so until you do a push operation, GitHub know your submission.
  • Send a pull request to Joe
    if you think Joe will accept your changes, you can send a pull request to him. This is GitHub operation, this action can help you share your modifications and Joe, and Joe asked if you are willing to accept the "pull request", of course, then do not accept it depends entirely on his own.
  • If Joe accepted your pull request, those changes he would pull his warehouse!

Reference link: https: //www.cnblogs.com/lovecode521/p/5620724.html

Published 14 original articles · won praise 0 · Views 733

Guess you like

Origin blog.csdn.net/weixin_44304362/article/details/104424411