Autogenerated manpages for v2.44.0-rc2
[git-manpages.git] / man1 / git-patch-id.1
blob266ee4cf16e3faf11b9c6af9b13cb372815c57d4
1 '\" t
2 .\"     Title: git-patch-id
3 .\"    Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
4 .\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
5 .\"      Date: 2024-02-19
6 .\"    Manual: Git Manual
7 .\"    Source: Git 2.44.0.rc2
8 .\"  Language: English
9 .\"
10 .TH "GIT\-PATCH\-ID" "1" "2024\-02\-19" "Git 2\&.44\&.0\&.rc2" "Git Manual"
11 .\" -----------------------------------------------------------------
12 .\" * Define some portability stuff
13 .\" -----------------------------------------------------------------
14 .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
15 .\" http://bugs.debian.org/507673
16 .\" http://lists.gnu.org/archive/html/groff/2009-02/msg00013.html
17 .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
18 .ie \n(.g .ds Aq \(aq
19 .el       .ds Aq '
20 .\" -----------------------------------------------------------------
21 .\" * set default formatting
22 .\" -----------------------------------------------------------------
23 .\" disable hyphenation
24 .nh
25 .\" disable justification (adjust text to left margin only)
26 .ad l
27 .\" -----------------------------------------------------------------
28 .\" * MAIN CONTENT STARTS HERE *
29 .\" -----------------------------------------------------------------
30 .SH "NAME"
31 git-patch-id \- Compute unique ID for a patch
32 .SH "SYNOPSIS"
33 .sp
34 .nf
35 \fIgit patch\-id\fR [\-\-stable | \-\-unstable | \-\-verbatim]
36 .fi
37 .sp
38 .SH "DESCRIPTION"
39 .sp
40 Read a patch from the standard input and compute the patch ID for it\&.
41 .sp
42 A "patch ID" is nothing but a sum of SHA\-1 of the file diffs associated with a patch, with line numbers ignored\&. As such, it\(cqs "reasonably stable", but at the same time also reasonably unique, i\&.e\&., two patches that have the same "patch ID" are almost guaranteed to be the same thing\&.
43 .sp
44 The main usecase for this command is to look for likely duplicate commits\&.
45 .sp
46 When dealing with \fIgit diff\-tree\fR output, it takes advantage of the fact that the patch is prefixed with the object name of the commit, and outputs two 40\-byte hexadecimal strings\&. The first string is the patch ID, and the second string is the commit ID\&. This can be used to make a mapping from patch ID to commit ID\&.
47 .SH "OPTIONS"
48 .PP
49 \-\-verbatim
50 .RS 4
51 Calculate the patch\-id of the input as it is given, do not strip any whitespace\&.
52 .sp
53 .if n \{\
54 .RS 4
55 .\}
56 .nf
57 This is the default if patchid\&.verbatim is true\&.
58 .fi
59 .if n \{\
60 .RE
61 .\}
62 .RE
63 .PP
64 \-\-stable
65 .RS 4
66 Use a "stable" sum of hashes as the patch ID\&. With this option:
67 .sp
68 .RS 4
69 .ie n \{\
70 \h'-04'\(bu\h'+03'\c
71 .\}
72 .el \{\
73 .sp -1
74 .IP \(bu 2.3
75 .\}
76 Reordering file diffs that make up a patch does not affect the ID\&. In particular, two patches produced by comparing the same two trees with two different settings for "\-O<orderfile>" result in the same patch ID signature, thereby allowing the computed result to be used as a key to index some meta\-information about the change between the two trees;
77 .RE
78 .sp
79 .RS 4
80 .ie n \{\
81 \h'-04'\(bu\h'+03'\c
82 .\}
83 .el \{\
84 .sp -1
85 .IP \(bu 2.3
86 .\}
87 Result is different from the value produced by git 1\&.9 and older or produced when an "unstable" hash (see \-\-unstable below) is configured \- even when used on a diff output taken without any use of "\-O<orderfile>", thereby making existing databases storing such "unstable" or historical patch\-ids unusable\&.
88 .RE
89 .sp
90 .RS 4
91 .ie n \{\
92 \h'-04'\(bu\h'+03'\c
93 .\}
94 .el \{\
95 .sp -1
96 .IP \(bu 2.3
97 .\}
98 All whitespace within the patch is ignored and does not affect the id\&.
99 .sp
100 .if n \{\
101 .RS 4
104 This is the default if patchid\&.stable is set to true\&.
106 .if n \{\
112 \-\-unstable
113 .RS 4
114 Use an "unstable" hash as the patch ID\&. With this option, the result produced is compatible with the patch\-id value produced by git 1\&.9 and older and whitespace is ignored\&. Users with pre\-existing databases storing patch\-ids produced by git 1\&.9 and older (who do not deal with reordered patches) may want to use this option\&.
116 .if n \{\
117 .RS 4
120 This is the default\&.
122 .if n \{\
126 .SH "GIT"
128 Part of the \fBgit\fR(1) suite