blob: 6bd484b939fbd535b3f21c2d83b2b8e15573ba76 [file] [log] [blame]
David Shevitz6493b2f2017-08-03 14:53:29 -07001= Changes
2
3A change represents a single commit under review. Each change is identified
4by a <<change-id>>.
5
6Multiple git commits can share the same Change-Id, allowing you to update a
7change as you receive feedback through the code review process. In Gerrit,
8commits that share the same Change-Id are referred to as _patch sets_. When a
9change is approved, only the latest version of a commit is submitted to the
10repository.
11
12You can view a specific change using Gerrit's Review screen. This screen
13provides the following information for each change:
14
15* Current and previous patch sets
16* <<Change properties>>, such as owner, project, and target branch
17* link:CONCEPT-comments.html[Comments]
18* Votes on link:config-labels.html[Review Labels]
19* The <<change-id>>
20
21[[change-properties]]
22== Change properties
23
24When you open a change in Gerrit, the Review screen displays a number of
25properties about that change.
26
27.Change Properties
28|===
29|Property|Description
30
31|Updated
32|The date on which the change was last updated.
33
34|Owner
35|The contributor who created the change.
36
37|Assignee
38|The contributor responsible for the change. Often used when a change has
39mulitple reviewers to identify the individual responsible for final approval.
40
41|Reviewers
42|A list of one or more contributors responsible for reviewing the change.
43
44|CC
45|A list of one or more contributors who are kept informed about the change, but
46are not required to review it.
47
48|Project
49|The name of the Gerrit project.
50
51|Branch
52|The branch on which the change was made.
53
54|Topic
55|An optional topic.
56
57|Strategy
58|The <<submit-strategy>> for the change.
59
60|Code Review
61|Displays the Code Review status for the change.
62
63|===
64
65In addition, Gerrit displays the status of any additional labels, such as
66the Verified label, that have been configured for the server. See
67link:config-labels.html[Review Labels] for more information.
68
69[[change-message]]
70== Change Message
71
72Next to the list of change properties is the change message. This message
73contains user-supplied information regarding what the change does. To modify
74the change message, click the *Edit* link.
75
76By default, the change message contains the Change-Id. This ID contains a
77permanent link to a search for that Change-Id in Gerrit.
78
79[[related-changes]]
80== Related Changes
81
82In some cases, a change may be dependent on another change. These changes are
83listed next to the change message. These related changes are grouped together in
84several categories, including:
85
86* Relation Chain. These changes are related by parent-child relationships,
87 regardless of <<topics>>.
88* Merge Conflicts. These are changes in which there is a merge conflict with
89 the current change.
90* Submitted Together. These are changes that share the same <<topics>>.
91
92An arrow indicates the change you are currently viewing.
93
94[[topic]]
95== Topics
96
97Changes can be grouped by topics. Topics make it easier to find related changes
98by using the topic search operator. Changes with the same topic also appear in
99the *Relation Chain* section of the Review screen.
100
101Grouping changes by topics can be helpful when you have several changes that,
102when combined, implement a feature.
103
104Assigning a topic to a change can be done in the change screen or through a `git
105push` command.
106
107[[submit-strategies]]
108== Submit strategies
109
110Each project in Gerrit can employ a specific submit strategy. This strategy is
111listed in the change properties section of the Review screen.
112
113The following table lists the supported submit strategies.
114
115.Submit Strategies
116|===
117|Strategy|Description
118
119|Fast Forward Only
120|No merge commits are produced. All merges must be handled on the client, before
121submitting the change.
122
123To submit a change, the change must be a strict superset of the destination
124branch.
125
126|Merge If Necessary
127|The default submit strategy. If the change being submitted is a strict superset
128of the destination branch, then the branch is fast-forwarded to the change. If
129not, a merge commit is automatically created at submit time. This is identical
130to the `git merge --ff` command.
131
132|Always Merge
133|Always produce a merge commit, even if the change is a strict superset of the
134destination branch. This is identical to the `git merge --no-ff` command.
135It is often used when users of the project want to be able to read the history
136of submits by running the `git log --first-parent` command.
137
138|Cherry Pick
139|Always cherry pick the patch set, ignoring the parent lineage and instead
140creating a new commit on top of the current branch.
141
142When cherry picking a change, Gerrit automatically appends a short summary of
143the change's approvals and a link back to the change. The committer header is
144also set to the submitter, while the author header retains the original patch
145set author.
146
147NOTE: Gerrit ignores dependencies between changes when using this submit type
148unless `change.submitWholeTopic` is enabled and depending changes share the same
149topic. This means submitters must remember to submit changes in the right order
150when using this submit type.
151
152|Rebase if Necessary
153|If the change being submitted is a strict superset of the destination branch,
154the branch is fast-forwarded to the change. If not, the change is automatically
155rebased and the branch is fast-forwarded to the change.
156
157|Rebase Always
158|Similar to Rebase If Necessary, but creates a new patch set even if fast
159forward is possible. This strategy is also similar to Cherry Pick; however,
160Rebase Always does not ignore dependencies.
161
162|===
163
164Any project owner can use the Project screen to modify the method Gerrit uses
165to submit a change.
166
167[[change-id]]
168== Change-Id
169
170Gerrit uses a Change-Id to identify which patch sets belong to the same review.
171For example, you make a change to a project. A reviewer supplies some feedback,
172which you address in a second commit. By assigning the same Change-Id to both
173commits, Gerrit can attach those commits to the same change.
174
175Change-Ids are appended to the end of a commit message, and resemble the
176following:
177
178....
179commit 29a6bb1a059aef021ac39d342499191278518d1d
180Author: A. U. Thor <author@example.com>
181Date: Thu Aug 20 12:46:50 2009 -0700
182
183 Improve foo widget by attaching a bar.
184
185 We want a bar, because it improves the foo by providing more
186 wizbangery to the dowhatimeanery.
187
188 Bug: #42
189 Change-Id: Ic8aaa0728a43936cd4c6e1ed590e01ba8f0fbf5b
190 Signed-off-by: A. U. Thor <author@example.com>
191 CC: R. E. Viewer <reviewer@example.com>
192....
193
194Gerrit requires that the Change-Id is in the footer (last paragraph) of a
195commit message. It can be combined with a Signed-off-by, CC, or other lines. For
196instance, the previous example has a Change-Id, along with a Signed-off-by and
197CC line.
198
199Notice that the Change-Id is similar to the commit id. To avoid confusing the
200two, a Change-Id typically begins with an `I`.
201
202While there are several ways you can add a Change-Id, the standard
203method uses git's link:cmd-hook-commit-msg.html[commit-msg hook]
204to automatically add the Change-Id to each new commit.
205
206GERRIT
207------
208Part of link:index.html[Gerrit Code Review]
209
210SEARCHBOX
211---------