952779292b56ad70aae4d287357a8ca3db61414c
   1git-pull(1)
   2===========
   3
   4NAME
   5----
   6git-pull - Pull and merge from another repository.
   7
   8
   9SYNOPSIS
  10--------
  11'git-pull' <repository> <refspec>...
  12
  13
  14DESCRIPTION
  15-----------
  16Runs 'git-fetch' with the given parameters.
  17
  18When only one ref is downloaded, runs 'git resolve' to merge it
  19into the local HEAD.  Otherwise uses 'git octopus' to merge them
  20into the local HEAD.
  21
  22
  23OPTIONS
  24-------
  25include::pull-fetch-param.txt[]
  26
  27
  28Author
  29------
  30Written by Linus Torvalds <torvalds@osdl.org>
  31and Junio C Hamano <junkio@cox.net>
  32
  33Documentation
  34--------------
  35Documentation by David Greaves, Junio C Hamano and the git-list <git@vger.kernel.org>.
  36
  37GIT
  38---
  39Part of the gitlink:git[7] suite
  40