Project

General

Profile

Gerrit » History » Version 74

neels, 03/16/2018 02:26 AM

1 1 zecke
h1. Contributing using Gerrit
2
3 11 laforge
{{>toc}}
4
5 10 laforge
At [[OpenBSC:OsmoDevCon2016]] we discussed problems with our past contribution / patch submission process using mails on the mailing list as well as patchwork.  The result is that we want to give Gerrit a try for some time and see if it helps us to have a better process
6 1 zecke
7 10 laforge
Gerrit is a review tool that integrates nicely with git and ssh. You can find general information about Gerrit at https://www.gerritcodereview.com/
8 1 zecke
9 10 laforge
The advantages of Gerrit are:
10
* patch submission status is automatically tracked, also with several revisions for a patch set.
11
* patches are build-tested (and possibly even further tested) by jenkins before they are applied
12
* developers + maintainers can formally vote on a patch (developer: -1/0/+1, maintainer: -2/0/+2)
13
* once a patch has +2 score, it can be (automatically) merged into master
14
* patch sumissions not via git send-email but direcly from git
15
16
h2. Osmocom Subprojects using Gerrit
17
18 73 laforge
The majority of Osmocom sub-projects have chosen to use Gerrit for patch review.  In order to check if a given program uses Gerrit, please check the auto-generated list at https://gerrit.osmocom.org/#/admin/projects/
19 1 zecke
20 73 laforge
If the project is listed there, then it uses Gerrit.   If the project is not listed there, please send patches by e-mail to the respective project [[Mailing_List]] instead.
21
22 30 neels
23 1 zecke
h2. Configuring Gerrit/Account
24
25 54 neels
You will need to sign-up at https://gerrit.osmocom.org/login/. If you have an Osmocom Redmine account you can use https://osmocom.org/openid as OpenID provider.
26 1 zecke
27 68 neels
* first sign in on https://osmocom.org. Do this before logging in on gerrit (the redmine login process loses the gerrit login data and you'd have to do the same thing twice if not logged in on osmocom.org already).
28 55 neels
* go to https://gerrit.osmocom.org and click the "Sign in" link.
29 68 neels
* click the "Sign in with Osmocom":https://gerrit.osmocom.org/login/%23%2Fq%2Fstatus%3Aopen?id=https://osmocom.org/openid link (can be bookmarked). -- This is the same as entering https://osmocom.org/openid as OpenID provider and hitting the "Sign in" button.
30 61 neels
31
*careful:* enter 'https' to ensure that your openid credentials are passed on encryptedly.
32 68 neels
*pitfall:* if you're logged in on 'projects.osmocom.org' (including the 'projects.' part), you should also use the openid provider: https://projects.osmocom.org/openid; the 'projects.' part may be omitted, what's important is that redmine login and OpenID URLs match. Also, decide for one of those URLs once, because when picking a different OpenID URL next time, you will create a new user instead of logging in as yourself.
33 61 neels
*note:* gerrit will create a distinct user for each openid URL you pass. If you logged in successfully but your user seems to have lost permissions, you may have created an evil twin user: contact us on the mailing list so we can fix it in the user database.
34 54 neels
35
If you have no Osmocom redmine account, you can simply create one online at the "Register" link in the upper right corner.
36 10 laforge
Even without an existing or new redmine account, you should also be able to use any other OpenID provider to authenticate against gerrit (untested).
37
38
After the initial sign-up you will need to:
39 1 zecke
40
* Pick a username (can not be changed)
41
* Add your public ssh key(s)
42
* Add email addresses you intend to use as author/comitter
43 30 neels
44
If you would like to push private branches to the Gerrit repository, you also need to be added to the "known users" group.
45
Please send a short requesting email to openbsc@lists.osmocom.org.
46 1 zecke
47
h2. Setting up Gerrit for commits and pushing
48
49 33 neels
*Note:* it is easiest to work with gerrit when gerrit is the only remote in your git clone.
50
When you clone from git.osmocom.org and add the gerrit remote, git will have two remotes,
51 36 neels
so when you first checkout a branch you have to supply the remote explicitly (cumbersome).
52 34 neels
The gerrit repositories and git.osmocom.org are constantly synced, so it is sufficient
53
to clone from gerrit only.
54 33 neels
55
h3. Simplest: new clone
56
57 35 neels
* Create a new clone from gerrit
58
* Fetch the commit hook that adds Change-Id to each commit to uniquely identify a commit
59 42 neels
60 33 neels
<pre>
61
git clone ssh://$USERNAME@gerrit.osmocom.org:29418/$PROJECT.git
62
scp -P 29418 $USERNAME@gerrit.osmocom.org:hooks/commit-msg $PROJECT/.git/hooks/
63
</pre>
64
65
h3. SSH config
66
67
In '~/.ssh/config', add these lines:
68
<pre>
69 52 neels
Host go
70 33 neels
Hostname gerrit.osmocom.org
71
Port 29418
72
User $USERNAME
73
</pre>
74 52 neels
('go' means gerrit.osmocom, replace with your favorite shortcut name,
75 33 neels
replace '$USERNAME' with your user name as used on the gerrit website)
76
77
Then you can shorten above commands to
78 1 zecke
<pre>
79 52 neels
git clone ssh://go/$PROJECT.git
80 51 neels
cd $PROJECT
81
scp go:hooks/commit-msg .git/hooks/
82 33 neels
</pre>
83
84 69 neels
h3. Commit hook: Always put Change-Id at the bottom of the log message
85
86
The commit-msg hook places a Change-Id tag in the footer, often above other tags like 'Depends:' or 'Related:'. Since the Change-Id is an implementation detail for Gerrit, I personally prefer it always placed right at the bottom. This simple edit changes the commit-msg hook to add Change-Id at the bottom unconditionally:
87
88
<pre>
89
cd $PROJECT
90
sed -i 's/if (unprinted /if (0 \&\& unprinted /' .git/hooks/commit-msg
91
</pre>
92
93
The goal is to disable the condition in line 163 with an 'if (0...':
94
95
<pre>
96
                        if (0 && unprinted && match(tolower(footer[line]), changeIdAfter) != 1) {
97
                                unprinted = 0
98
                                print "Change-Id: I'"$id"'"
99
                        }
100
</pre>
101
102
Then the Change-Id will be placed by line 170 instead.
103
104 46 neels
h3. Committer must match
105
106 47 neels
Your email address on gerrit and the email address git places in your
107 46 neels
commits must match, or you will get rejected with an error message like
108
"invalid commiter". You can add email addresses on the gerrit web UI.
109
110 33 neels
h3. Add gerrit to an existing clone
111
112 7 neels
* Add the remote to be able to fetch and push to gerrit
113
* Fetch the commit hook that adds Change-Id to each commit to uniquely identify a commit
114
115
<pre>
116
USERNAME=gerrit_user_name
117
PROJECT=$(basename $PWD)
118 1 zecke
git remote add gerrit ssh://$USERNAME@gerrit.osmocom.org:29418/$PROJECT.git
119
scp -P 29418 $USERNAME@gerrit.osmocom.org:hooks/commit-msg .git/hooks/
120 44 neels
</pre>
121
122 33 neels
h2. Push for review
123 1 zecke
124 38 neels
Checkout the revision or branch that you want to submit for review, then
125
126 31 neels
<pre>
127 48 ahuemer
git push gerrit HEAD:refs/for/master
128 1 zecke
</pre>
129 38 neels
130 1 zecke
You can optionally add a topic name with
131 40 neels
132
<pre>
133 48 ahuemer
git push gerrit HEAD:refs/for/master/my_topic
134 38 neels
</pre>
135
136 57 neels
h2. Merge patch to master
137
138
A patch can be merged when it has CR+2 and V+1 votes, and if, in case of a
139
series of patches pushed from a branch, when its ancestor patches can also be
140
merged.
141
142
Sometimes the reviewer that gives CR+2 also hits the "Submit" button right away 
143
to merge the patch to master. Sometimes it is left up to the owner of the patch
144 59 neels
to decide when to hit "Submit" (who needs to be in the "Known Users" group).
145 57 neels
146
The V+1 vote means "build is verified" and is usually given by our jenkins
147 59 neels
gerrit builds: https://jenkins.osmocom.org/jenkins/view/Jenkins-Gerrit/
148 57 neels
149
The CR+2 vote means "code reviewed and ready for merge to master branch".
150
Accounts with the "Reviewer" role for a given project are allowed to give CR+2
151
votes. Others are allowed to give CR+1 (and CR-1). CR votes _don't_ add up.
152
153 67 neels
_Fixed by gerrit 2.12.6, see https://bugs.chromium.org/p/gerrit/issues/detail?id=4158:_
154
-Sometimes hitting the "Submit" button results in an error message saying
155 57 neels
"Change is New", which is a bug related to a private branch with the same
156 65 neels
patches being present. Can be fixed e.g. by an admin's manual push to master.-
157 1 zecke
158 38 neels
h2. Push a "private" user branch
159 33 neels
160 1 zecke
*Note* that you must be a member of the "known users" group, see above.
161 33 neels
162 43 neels
If your local branch name is of the form 'your_name/topic', you can just
163 1 zecke
<pre>
164
git push
165 33 neels
</pre>
166 41 neels
and git will tell you what to do.
167 1 zecke
168 41 neels
To push from a "nonstandard" local branch name, do
169
<pre>
170 50 msuraev
git push gerrit HEAD:refs/heads/user/$USERNAME/branch_name
171 33 neels
</pre>
172
173 39 neels
174
h2. List changesets in gerrit
175
176 7 neels
<pre>
177 48 ahuemer
git ls-remote gerrit changes/*
178 2 zecke
</pre>
179 12 msuraev
180 17 neels
h1. Tips and Tricks
181 1 zecke
182 74 neels
h2. Fetch fast from git.osmocom.org, push to gerrit
183
184
Sometimes these days it can be irritatingly slow to 'git fetch' from gerrit.
185
Also, adding a second remote forces you to often pass the remote on the command line ("origin").
186
It is possible to have only one remote for cmdline convenience, with differing push and pull URLs:
187
188
<pre>
189
git remote set-url origin git://git.osmocom.org/libosmocore
190
git remote set-url --push origin ssh://$USERNAME@gerrit.osmocom.org:29418/libosmocore
191
</pre>
192
193
With above .ssh config you can also use the shorter ssh:// URL:
194
<pre>
195
git remote set-url --push origin ssh://go/libosmocore
196
</pre>
197
198
The resulting .git/config looks something like:
199
<pre>
200
[remote "origin"]
201
        url = git://git.osmocom.org/libosmocore
202
        pushurl = ssh://go/libosmocore
203
        fetch = +refs/heads/*:refs/remotes/origin/*
204
</pre>
205
206
Now you're fetching from git.osmocom.org, which is lightning fast, while pushing patches will still go to gerrit as usual.
207
208 17 neels
h2. Throw-away branch
209
210
If you need to adjust and re-submit patches, it may be handy to create a throw-away branch ("R D" in magit-gerrit in emacs for example),
211 45 neels
make your changes/amendments and then send patch(es) back to gerrit while removing temporary branch automatically with "git review -f".
212 13 neels
213 56 neels
h2. Fetch a patch from gerrit
214
215
This script (I called it @P@) makes fetching a patch set from gerrit a breeze:
216
<pre>
217
#!/bin/sh
218
# fetch gerrit patch into new branch named like the patch number.
219
#
220
# Usage: go to a git clone and pass a patch number:
221
#
222
#   cd openbsc
223
#   P 973
224
# or
225
#   P 973/2
226
#
227
# Will create new local branches '973_4' (if 4 is the latest patch set)
228
# or '973_2', respectively.
229
230
patch="$1"
231
232
if [ -z "$patch" ]; then
233
  echo "Usage: P 1234[/5]"
234
  exit 1
235
fi
236
237
if [ -z "$(echo "$patch" | grep '/')" ]; then
238
  patch="/$patch/"
239
fi
240
241
if [ -z "$(echo "$patch" | grep '^/')" ]; then
242
  patch="/$patch"
243
fi
244
245
last_set="$(git ls-remote origin "changes/*" | grep "$patch" | sed 's#.*/\([^/]*\)$#\1 &#' | sort -n | tail -n 1)"
246
if [ -z "$last_set" ]; then
247
  echo "Not found: $patch"
248
  exit 1
249
fi
250
251
change_name="$(echo "$last_set" | sed 's/.*\(refs.*\)/\1/')"
252
branch_name="$(echo "$change_name" | sed 's#refs/changes/../\([0-9]*\)/\([0-9]*\)#\1_\2#')"
253
254
set -x
255
git fetch origin "$change_name"
256
git co -b "$branch_name" FETCH_HEAD
257
</pre>
258
259 25 neels
h2. Re-submit a Branch with Amended Commits
260 13 neels
261 1 zecke
On a feature branch, one typically has numerous commits that depend on their preceding commits.
262 58 neels
Often, some of the branch commits need to be amended for fixes. You can re-submit changes to
263
patches on your branch by pushing in the same way that you first submitted the branch.
264 22 neels
265 58 neels
Note: if you modify the Change-Ids in the commit logs, your push would open entirely new
266
review entries and you would have to abandon your previous submission. Comments on the first
267
submission are "lost" and you cannot diff between patch sets.
268 29 neels
269 58 neels
(There used to be a bug in gerrit that required editing the first patch to be able to
270
re-submit a branch, but that's fixed.)
271 29 neels
272
273
274 26 neels
h2. Re-submit Previously Abandoned Changes
275 16 neels
276
You have to edit the Change-Ids, on a branch that would be every single commit log message.
277
278 13 neels
<pre>
279 1 zecke
cd openbsc
280
git co my-branch
281
git rebase -i master
282
# replace all 'pick' with 'r' (or 'reword'), exit your editor
283 13 neels
# git presents each commit log message for editing
284
</pre>
285
286 27 neels
h2. Submit a "private" branch for master
287 21 neels
288
If you've pushed a branch to refs/heads/* somewhere, gerrit will already know the Change-Ids on it.
289 24 neels
Make sure the option [[Gerrit#Private-Branches-Create-a-new-change-for-every-commit|Create a new change for every commit not in the target branch]] is _TRUE_ for your project,
290 21 neels
or gerrit will refuse to accept your submission.
291
292 60 neels
h2. 502 Bad Gateway
293
294
When getting a "Bad Gateway" error message upon trying to login on gerrit, you probably just need to restart your web browser. The reason is not clear.
295
296 16 neels
h1. Reasons for Particular Configuration
297 13 neels
298 16 neels
h2. Rebase if necessary
299
300
There are different merge strategies that Gerrit performs to accept patches.
301 13 neels
Each project can be configured to a specific merge strategy, but unfortunately you can't
302
decide on a strategy per patch submission.
303
304
It seems that the "Merge if Necessary" strategy is best supported, but it creates non-linear
305
history with numerous merge commits that are usually not at all necessary.
306
307
Instead, the "Cherry Pick" strategy puts each patch onto current master's HEAD to create
308
linear history. However, this will cause merge failures as soon as one patch depends on
309
another submitted patch, as typical for a feature branch submission.
310
311 1 zecke
So we prefer the "Rebase if Necessary" strategy, which always tries to apply your patches to
312 13 neels
the current master HEAD, in sequence with the previous patches on the same branch.
313
However, some problems still remain, including some bugs in "Rebase if Necessary".
314 1 zecke
315 13 neels
There's a problem with "Rebase if Necessary": If your branch sits at master's HEAD, Gerrit
316
refuses to accept the submission, because it thinks that no new changes are submitted.
317
This is a bug in Gerrit, which holger has fixed manually in our Gerrit installation:
318 1 zecke
319
https://bugs.chromium.org/p/gerrit/issues/detail?id=4158
320
321
322 16 neels
h2. Private Branches: Create a new change for every commit...
323 1 zecke
324 13 neels
Say you have an extensive feature in development, and you want to keep it on the
325
upstream git repository to a) keep it safe and b) collaborate with other devs on it.
326 16 neels
So, of course, you have regularly pushed to refs/heads/yoyodyne/feature.
327 13 neels
328
Since you have the gerrit commit hook installed, your feature branch already has
329
Change-Id tags in all commit log messages.
330
331
Now your feature is complete and you would like to submit it to master.
332
Alas, Gerrit refuses to accept your patch submission for master, because it
333
knows the Change-Ids are also on a different branch.
334
335 16 neels
Gerrit by default enforces that a Change-Id must be unique across all branches,
336
so that each submission for review is separate for each branch. Instead, we
337
want to handle Change-Ids per-branch, so that you can have the same change
338
submitted to different branches, as separate patch submissions, without having
339
to cosmetically adjust the Change-Id.
340 13 neels
341 16 neels
Solution: set the option 
342
_Create a new change for every commit not in the target branch_ to _TRUE_
343 13 neels
344 20 neels
h2. Allow content merges
345 14 neels
346
By default, gerrit compares patches only by the files' paths. If two paths are the same,
347
it immediately shows them as conflicts (path conflicts).
348
349
In software development, a conflict usually means an actual content conflict, so if the
350
edits are in two entirely separate places in the file, we don't consider this a conflict.
351
352 23 neels
By setting _Allow content merges_ to _TRUE_ in the git project config, we tell Gerrit to
353 14 neels
perform text merges of the submitted patches and only complain about actual content
354
conflicts, in the usual software engineering sense.
355 32 neels
356
h1. Admin
357
358 72 laforge
h2. Adding a new repository
359
360
* create the repository in the Gerrit Ui, inherit from "All-Projects"
361
* create an empty git repository using gitosis on git.osmcoom.org
362
* configure a jenkins build testing job for this project, cloning/copying from any osmo-*-gerrit projects
363
364
git replication to gerrit.osmocom.org is enabled automatically, nothing to be done here.  In case of doubt, try
365
@ssh -p 29418 gerrit.osmocom.org replication start --all --wait@
366
367 32 neels
h2. Adding users to groups
368
369
Normally, the gerrit UI auto-completes a user name in the edit field. It has happened
370
though that an existing user is not auto-completed, as if it didn't exist. In that case,
371
find out the user ID (seven digit number like 1000123) and just enter that.
372
373
The user ID can be found on the user's "Settings" page, or in the database (s.b.).
374
375
h2. Querying the database directly
376
377
If your user has permission to access the database, you can place SQL queries using the
378
'gerrit gsql' commands over ssh:
379
380
<pre>
381 71 neels
ssh go "gerrit gsql -c \"show tables\""
382
ssh go "gerrit gsql -c \"select full_name,account_id from accounts\""
383 1 zecke
</pre>
384 53 neels
385
(see ~/.ssh/config above for the 'go' shortcut)
386 1 zecke
387
This seems to be the MySQL dialect.
388 71 neels
389
The "...\"...\"" quoting allows including single-quotes in the SQL statements.
390 62 neels
391
h2. Fix evil twin users
392
393
If differing openid URLs have lead to evil twin users shadowing the same email address just without the permissions, you can fix it like this:
394
395
<pre>
396 64 neels
ssh go "gerrit gsql -c \"select * from account_external_ids where email_address like '%foo%'\""
397 62 neels
# ACCOUNT_ID | EMAIL_ADDRESS   | PASSWORD | EXTERNAL_ID
398
# -----------+-----------------+----------+----------------------------------
399
# 100004     | foo@example.com | NULL     | https://osmocom.org/openid/user/777
400
# 100021     | foo@example.com | NULL     | https://projects.osmocom.org/openid/user/777
401
402 64 neels
ssh go "gerrit gsql -c \"update account_external_ids set account_id = 100004 where email_address like '%foo%'\""
403 62 neels
404 64 neels
ssh go "gerrit gsql -c \"select * from account_external_ids where email_address like '%foo%'\""
405 62 neels
# ACCOUNT_ID | EMAIL_ADDRESS   | PASSWORD | EXTERNAL_ID
406
# -----------+-----------------+----------+----------------------------------
407
# 100004     | foo@example.com | NULL     | https://osmocom.org/openid/user/777
408
# 100004     | foo@example.com | NULL     | https://projects.osmocom.org/openid/user/777
409
</pre>
Add picture from clipboard (Maximum size: 48.8 MB)