CARVIEW |
Select Language
HTTP/2 301
content-security-policy: script-src 'sha256-1az3CiAdXAaMP3TFl5msfrDjNuSHMdg1ecAgxfZPR50=' 'unsafe-inline' 'strict-dynamic'; object-src 'none'; base-uri 'none'; report-uri https://csp.withgoogle.com/csp/chromium-website/
location: /developers/github-collaboration/
content-type: text/plain; charset=utf-8
accept-ranges: bytes
date: Fri, 10 Oct 2025 21:20:47 GMT
x-served-by: cache-bom-vanm7210034-BOM
x-cache: MISS
x-cache-hits: 0
x-timer: S1760131247.907367,VS0,VE111
vary: x-fh-requested-host, accept-encoding
alt-svc: h3=":443";ma=86400,h3-29=":443";ma=86400,h3-27=":443";ma=86400
content-length: 48
HTTP/2 200
cache-control: max-age=3600
content-encoding: gzip
content-security-policy: script-src 'sha256-1az3CiAdXAaMP3TFl5msfrDjNuSHMdg1ecAgxfZPR50=' 'unsafe-inline' 'strict-dynamic'; object-src 'none'; base-uri 'none'; report-uri https://csp.withgoogle.com/csp/chromium-website/
content-type: text/html; charset=utf-8
etag: "177ca9c0e36c63a9a89267bec89e27e745e2582dc47fac43ced148f3391e283e"
last-modified: Fri, 10 Oct 2025 02:31:02 GMT
strict-transport-security: max-age=31556926
accept-ranges: bytes
date: Fri, 10 Oct 2025 21:20:47 GMT
x-served-by: cache-bom-vanm7210034-BOM
x-cache: MISS
x-cache-hits: 0
x-timer: S1760131247.031071,VS0,VE166
vary: x-fh-requested-host, accept-encoding
alt-svc: h3=":443";ma=86400,h3-29=":443";ma=86400,h3-27=":443";ma=86400
content-length: 2196
GitHub Collaboration

The Chromium Projects
GitHub Collaboration
This document explains how to collaborate on work in progress by using Git and pushing changes to GitHub.
Alternatives would be to email code diffs or use codereview.chromium.org and
git cl patch
. However they are brittle and time consuming when patches do no
apply cleanly and or are part of several pipelined or dependent patches.
Collaboration via git is made easy by simply using git merge
to include code
from other patches into a local branch you are working with.
- Create a chromium fork on GitHub if you will share code with others.
- Fork an existing chromium repository on GitHub such as:
- Delete branches you are not interested in.
- Add remote references to GitHub respositories (yours or others)
- git remote add g https://github.com/your-user-name/chromium
- git remote add other-repo-name https://github.com/other-user-name/chromium
- (I typically name my own github repo just 'g')
- Fetch from github repos
- git fetch g
- git fetch other-repo-name
- Occasionally add
--prune
to remove any remote-tracking references that no longer exist on the remote.
- Merge from github repos
- git merge other-repo-name/branch-name
- Push to github
- Push current branch
- git push g HEAD
- Push all branches where the local names match remote names.
- git push g :
- Delete a remote branch
- git push g -f :remote-branch
- Push current branch