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