A collection of git recipes to do common git tasks.
See also Git Tips.
This is designed to be a cookbook for common command sequences/tasks relating to git, git-cl, and how they work with Chromium development. It might be a little light on explanations.
If you are new to git, or do not have much experience with a distributed version control system, you should also check out The Git Community Book for an overview of basic git concepts and general git usage. Knowing what git means by branches, commits, reverts, and resets (as opposed to what SVN means by them) will help make the following much more understandable.
Chromium ships a large number of git extensions in depot_tools. Some (like git cl
) are required for the Chromium development workflow, while others (like git map-branches
) are simple utilities to make your life easier. Please take a look at the full depot_tools tutorial, and at the extensive man pages for all the extensions.
Since git-cl assumes that the diff between your current branch and its tracking branch is what should be used for the CL, the goal is to remove the unwanted files from the current branch, and preserve them in another branch.
git log
See the list of your commits. Find the hash of the last commit before your changes.git reset --soft abcdef
where abcdef is the hash found in the step above.git commit <files_for_this_cl> -m "files to upload"
commit the files you want included in the CL here.git new-branch new_branch_name
Create a new branch for the files that you want to exclude.git commit -a -m "preserved files"
Commit the rest of the files.This method creates a new branch from your current one to preserve your changes. The commits on the new branch are undone, and then only the files you want to preserve are recommitted.
git checkout -b new_branch_name
This preserves your old files.git log
See the list of your commits. Find the hash of the last commit before your changes.git reset --soft abcdef
Where abcdef is the hash found in the step above.git commit <files_to_preserve> -m "preserved files"
Commit the found files into the new_branch_name
.Then revert your files however you'd like in your old branch. The files listed in step 4 will be saved in new_branch_name
If you are systematic in creating separate local commits for independent changes, you can make a number of different changes in the same client and then cherry-pick each one into a separate review branch.
git log
# see the hashes for each of your commits.git new-branch review-changeN
Create a new review branch tracking origingit cherry-pick <hash of change N>
git cl upload
If a change needs updating due to review comments, you can go back to your main working branch, update the commit, and re-cherry-pick it into the review branch.
git checkout <working branch>
git commit --amend <files>
git commit <files>
git rebase -i origin
# use interactive rebase to squash the new commit into the old one.git log
# observe new hash for the changegit checkout review-changeN
git reset --hard
# remove the previous version of the changecherry-pick <new hash of change N>
git cl upload
Assume Windows computer named vista, and a Linux one named penguin. Prerequisite: both machines have git clones of the main git tree.
vista$ git remote add linux ssh://penguin/path/to/git/repo vista$ git fetch linux vista$ git branch -a # should show "linux/branchname" vista$ git checkout -b foobar linux/foobar vista$ hack hack hack; git commit -a vista$ git push linux # push branch back to linux penguin$ git reset --hard # update with new stuff in branch
Note that, by default, gclient sync
will update all remotes. If your other machine (i.e., penguin
in the above example) is not always available, gclient sync
will timeout and fail trying to reach it. To fix this, you may exclude your machine from being fetched by default:
vista$ git config --bool remote.linux.skipDefaultUpdate true
The command git revert X
patches in the inverse of a particular commit. Using this command is one way of making a revert:
git checkout origin # start with trunk git revert abcdef git cl upload
Git works in terms of commits, not files. Thus, working with the history of a single file requires modified version of the show and diff commands.
# Find the commit you want in the file's commit log. git log path/to/file # This prints out the file contents at commit 123abc. git show 123abc:path/to/file # Diff the current version against path/to/file against the version at # path/to/file git diff 123abc -- path/to/file
When invoking git show
or git diff
, the path/to/file
is not relative the the current directory. It must be the full path from the directory where the .git directory lives. This is different from invoking git log
which understands relative paths.
If you have a nearby copy of a Git repo, you can quickly bootstrap your copy from that one then adjust it to point it at the real upstream one.
git clone coworker-machine:/path/to/repo
git set-url origin https://chromium.googlesource.com/chromium/src.git
git fetch
git prune origin