Git Pull Operation

From GM-RKB
(Redirected from Git Pull)
Jump to navigation Jump to search

A Git Pull Operation is a pull operation that is a git operation.



References

2015

  • https://git-scm.com/docs/git-pull
    • NAME: git-pull - Fetch from and integrate with another repository or a local branch
    • SYNOPSIS: git pull [options] [<repository> [<refspec>...]].
    • DESCRIPTION: Incorporates changes from a remote repository into the current branch. In its default mode, git pull is shorthand for git fetch followed by git merge FETCH_HEAD.

      More precisely, git pull runs git fetch with the given parameters and calls git merge to merge the retrieved branch heads into the current branch. With --rebase, it runs git rebase instead of git merge.