Links: Chromium
https://chromium.googlesource.com/chromium/src/+/HEAD/docs/contributing.md#Uploading-a-change-for-review
https://chromium.googlesource.com/chromium/src/+/HEAD/docs/commit_checklist.md
to format the code correctly git cl format
to create the CL or add a new patch git cl upload
To get code from a CL
Replace the X
with the appropriate numbers, you can get the fetch command from gerrit in the top right menu in “Download Patch”
git fetch https://chromium.googlesource.com/chromium/src refs/changes/XX/XXXXXXX/X
git checkout -b branchName FETCH_HEAD
git cl issue XXXXXXX
After this commands you should have a branch with the changes from the CL where you can make commits and upload them as usual