Documentation / git-mkdelta.txton commit [PATCH] rename git-rpush and git-rpull to git-ssh-push and git-ssh-pull (418aaf8)
   1git-mkdelta(1)
   2==============
   3May 2005
   4
   5NAME
   6----
   7git-mkdelta - Creates a delta object
   8
   9
  10SYNOPSIS
  11--------
  12'git-mkdelta' [-v] [-d N | --max-depth=N ] <reference_object> <target_object> [ <next_object> ... ]
  13
  14DESCRIPTION
  15-----------
  16Creates a delta object to replace <reference_object> by using an
  17ordered list of potential objects to deltafy against earlier objects
  18in the list.
  19
  20A cap on the depth of delta references can be provided as well,
  21otherwise the default is to not have any limit.  A limit of 0 will
  22also undeltafy a given object.
  23
  24
  25OPTIONS
  26-------
  27-v::
  28        Verbose
  29
  30-d|--max-depth::
  31        limit the number of delta references in a chain
  32        If 0 then all objects are undeltafied.
  33        
  34Author
  35------
  36Git is written by Linus Torvalds <torvalds@osdl.org> and the git-list <git@vger.kernel.org>.
  37
  38Documentation
  39--------------
  40Documentation by David Greaves, Junio C Hamano and the git-list <git@vger.kernel.org>.
  41
  42GIT
  43---
  44Part of the link:git.html[git] suite
  45