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