Skip to content

Instantly share code, notes, and snippets.

@jjgod
Last active January 12, 2024 09:30
Show Gist options
  • Save jjgod/10910751 to your computer and use it in GitHub Desktop.
Save jjgod/10910751 to your computer and use it in GitHub Desktop.
Steps to checkout Chromium release branches

Steps to checkout Chromium release branches

Initial setup

mkdir chromium && cd chromium
fetch --nohooks chromium --nosvn=True
gclient sync --with_branch_heads --nohooks # May not even need this.

Fetching/updating a specific release branch

cd src # Assuming that you are already in the above 'chromium' directory.
git fetch origin refs/branch-heads/<branch> # <branch> would be something like '1942'.
git checkout FETCH_HEAD
gclient sync
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment