Difference between revisions of "Git/pull"
< Git
Jump to navigation
Jump to search
(Created page with "'''Action''': incorporates changes from a remote repository into the current branch In its default mode, git pull is shorthand for git fetch followed by [[../merge|git merge]...") |
(link to git fetch) |
||
Line 1: | Line 1: | ||
'''Action''': incorporates changes from a remote repository into the current branch | '''Action''': incorporates changes from a remote repository into the current branch | ||
− | In its default mode, git pull is shorthand for git fetch followed by [[../merge|git merge]] FETCH_HEAD. | + | In its default mode, git pull is shorthand for [[../fetch|git fetch]] followed by [[../merge|git merge]] FETCH_HEAD. |
==Links== | ==Links== | ||
===Documentation=== | ===Documentation=== | ||
* [https://www.kernel.org/pub/software/scm/git/docs/git-pull.html manpage @ kernel.org] | * [https://www.kernel.org/pub/software/scm/git/docs/git-pull.html manpage @ kernel.org] |