Difference between revisions of "Git/pull"
< Git
		
		
		
		Jump to navigation
		Jump to search
		|  (link to git fetch) | m (formatting) | ||
| 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  | + | In its default mode, <code>git pull</code> is shorthand for <code>git {{l/same|fetch}}</code> followed by <code>git {{l/same|merge}} FETCH_HEAD</code>. | 
| ==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] | ||