Branches
If you cannot find a specific commit, I would check if it is in a branch other than "master". When you first clone a repository, you only get a "leading" branch. You can run the following to check the branch available in the remote Chromium repository:
git branch new-local-branch origin/some-remote-branch git checkout new-local-branch
Obviously, use the correct name for the remote branch and call the local branch something logical.
Tags
When you clone a Git repository, you should get all of its tags by default. You can get a list of all defined tags by running git tag or git tag -l .
If you do not see any tags, try them explicitly:
git fetch --tags
Once you have the tag you want, check it out to start using this version of the code base:
git checkout <name of tag>
semperos
source share