Documentation / git-local-pull.txton commit [PATCH] Fix --merge-order unit test breaks introduced by 6c88be169881c9223532796bd225e79afaa115e1 (60646e9)
   1git-local-pull(1)
   2=================
   3v0.1, May 2005
   4
   5NAME
   6----
   7git-local-pull - Duplicates another GIT repository on a local system
   8
   9
  10SYNOPSIS
  11--------
  12'git-local-pull' [-c] [-t] [-a] [-d] [-v] [-w filename] [--recover] [-l] [-s] [-n] commit-id path
  13
  14DESCRIPTION
  15-----------
  16Duplicates another GIT repository on a local system.
  17
  18OPTIONS
  19-------
  20-c::
  21        Get the commit objects.
  22-t::
  23        Get trees associated with the commit objects.
  24-a::
  25        Get all the objects.
  26-d::
  27        Do not check for delta base objects (use this option
  28        only when you know the remote repository is not
  29        deltified).
  30--recover::
  31        Check dependency of deltified object more carefully than
  32        usual, to recover after earlier pull that was interrupted.
  33-v::
  34        Report what is downloaded.
  35-w::
  36        Writes the commit-id into the filename under $GIT_DIR/refs/ on
  37        the local end after the transfer is complete.
  38
  39Author
  40------
  41Written by Junio C Hamano <junkio@cox.net>
  42
  43Documentation
  44--------------
  45Documentation by David Greaves, Junio C Hamano and the git-list <git@vger.kernel.org>.
  46
  47GIT
  48---
  49Part of the link:git.html[git] suite
  50