Revision: 20431
Author:   [email protected]
Date:     Wed Apr  2 11:34:46 2014 UTC
Log:      Edited wiki page UsingGit through web user interface.
http://code.google.com/p/v8/source/detail?r=20431

Modified:
 /wiki/UsingGit.wiki

=======================================
--- /wiki/UsingGit.wiki Thu Mar 27 14:26:19 2014 UTC
+++ /wiki/UsingGit.wiki Wed Apr  2 11:34:46 2014 UTC
@@ -111,14 +111,32 @@

*Do not use <font color=red>`git svn dcommit`</font> for committing*, as it lacks git-cl's magic. Pro tip: you can use `git cl rebase` for updating (it's an alias for `git svn rebase`), so you'll never have to use any `git svn ...` command at all.

-== Creating a try job ==
+== Try jobs ==
+
+=== Creating a try job from codereview ===
+
+  # Upload a CL to rietveld.
+{{{
+git cl upload
+}}}
+  # Try the CL by sending a try job to the try bots like this:
+{{{
+git cl try
+}}}
+ # Wait for the try bots to build and you will get an e-mail with the result. You can also check the try state at your patch on codereview. + # If applying the patch fails you either need to rebase your patch or specify the v8 revision to sync to:
+{{{
+git cl try --revision=1234
+}}}
+
+=== Creating a try job from a local branch ===

   # Commit some changes to a git branch in the local repo.
   # Try the change by sending a try job to the try bots like this:
 {{{
 git try
 }}}
- # Wait for the try bots to build and you will get an e-mail with the result. + # Wait for the try bots to build and you will get an e-mail with the result. Note: There are issues with some of the slaves at the moment. Sending try jobs from codereview is recommended.

 === Useful arguments ===

--
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
--- You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to