Git fork

From Wiki @ Karl Jones dot com
Revision as of 08:55, 9 October 2015 by Karl Jones (Talk | contribs)

Jump to: navigation, search

In Git, a fork is a copy of the Git repository associated with your ID.

(TO DO: expand, organize, cross-reference, illustrate.)

Description

Any changes made to the original repository will be reflected back to your forked repositories.

When you are ready to merge your changes into the original repository, create a Git pull request.

If your pull request is approved by the administrator of the original repository, then your changes will be committed/merged with the existing original code-base. Until then, your changes will be reflected only in the copy you forked.

Fork-and-pull model

The Fork & Pull Model lets anyone fork an existing repository and push changes to their personal fork without requiring access be granted to the source repository. The changes must then be pulled into the source repository by the project maintainer.

Note that after forking you can clone your repository (the one under your name) locally on your machine. Make changes in it and push it to your forked repository. However, to reflect your changes in the original repository your pull request must be approved.

Fork versus clone

...

See Git clone.

See also

  • [Git (software)]]

External links