breadcrumbs:
luci-auth login -scopes "https://www.googleapis.com/auth/userinfo.email https://www.googleapis.com/auth/gerritcodereview"
.git ls-remote https://chromium.googlesource.com/chromiumos/manifest.git
If you have both @chromium.org and @google.com accounts, you may want to link them. Doing so may make it easier to view all of your CLs at once, and may make it less likely that you'll upload a CL with the wrong account.
However, if you do choose to link them, you will be prompted to log in using only your @google.com account, and that means you have to follow all of the normal security restrictions for such accounts.
Please note that linking your accounts does NOT change ownership of CLs you‘ve already uploaded and you will lose edit access to any CLs owned by your secondary (@google.com) account. i.e CLs you uploaded with your @google.com account, before the link, will not show up in your @chromium.org dashboard. Any in-flight changes will have to be re-uploaded, so if you have significant in-flight changes we don’t recommend linking accounts.
To link them:
==If you have two email accounts== (@chromium.org and @google.com) but only have one Gerrit account you can link them yourself:
==If you have two Gerrit accounts== you need an admin to link them. File a Infra-Git ticket with the subject “Link my <id>@chromium.org and <id>@google.com accounts”. If it is urgent, email ajp@chromium.org. Otherwise, the request should be handled within 2-3 days.
Once your accounts are linked, you'll be able to use both @chromium.org and @google.com emails in git commits. It is particularly useful if you have your @chromium.org email in global git config, and you try to trigger chrome-internal trybots (that otherwise require @google.com email).
If you have linked accounts, and want to unlink them:
If you see any errors during this process, file Infra-Git ticket with the subject “Unlink my <id>@chromium.org and <id>@google.com accounts”. If it is urgent, email ajp@chromium.org. Otherwise, the request should be handled within 2-3 days.
You can select Projects (and branches) you want to “watch” for any changes on by adding the Project under Settings -> Notifications.
Scenario: You have an ongoing Gerrit review, with issue number 123456 (this is the number after the last / in the URL for your Gerrit review). You have a local branch, with your change, say 2a40ae.
Someone else has an ongoing Gerrit review, with issue number 456789. You want to build on this. Here’s one way to do it:
git checkout -b their_branch
git cl patch -f 456789
git checkout -b my_branch # yes, create a new
git cherry-pick 2a40ae # your change from local branch
git branch --set-upstream-to=their_branch
git rebase
git cl issue 123456
<any more changes to your commit(s)>
git cl upload
In case you think you should be receiving email from Gerrit but don‘t see it in your inbox, be sure to check your spam folder. It’s possible that your mail reader is mis-classifying email from Gerrit as spam.
Check out the Gerrit Documentation to see if there are hints in there.
If you have any problems please open a Build Infrastructure issue on the Chromium issue tracker (the “Build Infrastructure” template should be automatically selected).
For additional information, you can also visit the PolyGerrit + Chromium FAQ.