Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(145)

Unified Diff: man/src/git-drover.demo.1.sh

Issue 494873003: Add stub git-drover documentation. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/depot_tools
Patch Set: Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « man/src/git-drover.txt ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: man/src/git-drover.demo.1.sh
diff --git a/man/src/git-drover.demo.1.sh b/man/src/git-drover.demo.1.sh
new file mode 100755
index 0000000000000000000000000000000000000000..24e77289df015eee107c91ac6273efaa46e16067
--- /dev/null
+++ b/man/src/git-drover.demo.1.sh
@@ -0,0 +1,27 @@
+#!/usr/bin/env bash
+. demo_repo.sh
+
+silent git push origin refs/remotes/origin/master:refs/branch-heads/9999
+silent git config --add remote.origin.fetch \
+ +refs/branch-heads/*:refs/remotes/branch-heads/*
+silent git fetch origin
+
+silent git checkout -b master origin/master
+add modified_file
+set_user some.committer
+c "This change needs to go to branch 9999"
+silent git tag pick_commit
+
+comment Before working with branches, you must \'gclient sync \
+ --with_branch_heads\' at least once to fetch the branches.
+
+set_user branch.maintainer
+tick 1000
+
+run git log -n 1 --pretty=fuller
+run git checkout -b drover_9999 branch-heads/9999
+run git cherry-pick -x $(git show-ref -s pick_commit)
iannucci 2014/08/20 23:01:05 add a comment that the -x is very important
Michael Moss 2014/08/20 23:21:07 Done.
+run git log -n 1 --pretty=fuller
+pcommand git cl upload
+echo "# Get LGTM or TBR."
+run git cl land
« no previous file with comments | « man/src/git-drover.txt ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698