SYNOPSIS
git drover
DESCRIPTION
git drover
is NOT IMPLEMENTED yet. See the EXAMPLE section for the equivalent
sequence of commands to run.
EXAMPLE
Before working with branches, you must 'gclient sync --with_branch_heads' at least once to fetch the branches.
$ git log -n 1 --pretty=fuller
commit 49fde8547a38bf27d38cbf3fac783cdf2ddc5f47
Author: some.committer <some.committer@chromium.org>
AuthorDate: Thu Apr 10 08:54:46 2014 +0000
Commit: some.committer <some.committer@chromium.org>
CommitDate: Thu Apr 10 08:54:46 2014 +0000
This change needs to go to branch 9999
$ git checkout -b drover_9999 branch-heads/9999
Branch drover_9999 set up to track remote ref refs/branch-heads/9999.
# DO NOT leave off the '-x' flag
$ git cherry-pick -x 49fde8547a38bf27d38cbf3fac783cdf2ddc5f47
[drover_9999 1e33c2c] This change needs to go to branch 9999
Author: some.committer <some.committer@chromium.org>
Date: Thu Apr 10 08:54:46 2014 +0000
1 file changed, 1 insertion(+)
create mode 100644 modified_file
$ git log -n 1 --pretty=fuller
commit 1e33c2ccf642703a6c1c582210fe63980dc6c45b
Author: some.committer <some.committer@chromium.org>
AuthorDate: Thu Apr 10 08:54:46 2014 +0000
Commit: branch.maintainer <branch.maintainer@chromium.org>
CommitDate: Thu Apr 10 09:11:36 2014 +0000
This change needs to go to branch 9999
(cherry picked from commit 49fde8547a38bf27d38cbf3fac783cdf2ddc5f47)
$ git cl upload
# Get LGTM or TBR.
$ git cl land
SEE ALSO
CHROMIUM DEPOT_TOOLS
Part of the chromium depot_tools(7) suite. These tools are meant to assist with the development of chromium and related projects. Download the tools from here.