Revision: 24845
Author: [email protected]
Date: Thu Oct 23 13:32:47 2014 UTC
Log: Edited wiki page UsingGit through web user interface.
https://code.google.com/p/v8/source/detail?r=24845
Modified:
/wiki/UsingGit.wiki
=======================================
--- /wiki/UsingGit.wiki Thu Oct 23 13:30:05 2014 UTC
+++ /wiki/UsingGit.wiki Thu Oct 23 13:32:47 2014 UTC
@@ -81,9 +81,56 @@
}}}
-= For project members (deprecated) =
+= For project members =
-== Full SVN checkout ==
+
+== 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. Note: There are issues with some of the slaves at the moment.
Sending try jobs from codereview is recommended.
+
+=== Useful arguments ===
+
+The revision argument tells the try bot what revision of the code base
will be used for applying your local changes to. Without the revision, our
LKGR revision is used as the base ([http://v8-status.appspot.com/lkgr]).
+{{{
+git try --revision=1234
+}}}
+To avoid running your try job on all bots, use the --bot flag with a
comma-separated list of builder names. Example:
+{{{
+git try --bot=v8_mac_rel
+}}}
+
+=== Viewing the try server ===
+
+http://build.chromium.org/p/tryserver.v8/waterfall
+
+=== Access credentials ===
+
+If asked for access credentials, use your @chromium.org email address and
your generated password from [http://code.google.com/hosting/settings
googlecode.com].
+
+== Full SVN checkout (deprecated) ==
This section describes an alternate way to get the source code. Following
these instructions makes sure you'll get a clone of the full SVN repository
including all branches and history. You'll need this to perform pushes to
trunk.
@@ -111,7 +158,7 @@
make dependencies
}}}
-== Staying up to date ==
+== Staying up to date (deprecated) ==
{{{
git checkout master
@@ -125,7 +172,7 @@
make dependencies
}}}
-== Sending code for reviewing ==
+== Sending code for reviewing (deprecated) ==
First, you need to configure [http://neugierig.org/software/git/?r=git-cl
git-cl], thankfully it's done magically by a single command:
@@ -139,7 +186,7 @@
git cl upload
}}}
-== Committing ==
+== Committing (deprecated) ==
Update your branch using git-svn:
@@ -154,49 +201,3 @@
}}}
*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.
-
-== 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. Note: There are issues with some of the slaves at the moment.
Sending try jobs from codereview is recommended.
-
-=== Useful arguments ===
-
-The revision argument tells the try bot what revision of the code base
will be used for applying your local changes to. Without the revision, our
LKGR revision is used as the base ([http://v8-status.appspot.com/lkgr]).
-{{{
-git try --revision=1234
-}}}
-To avoid running your try job on all bots, use the --bot flag with a
comma-separated list of builder names. Example:
-{{{
-git try --bot=v8_mac_rel
-}}}
-
-=== Viewing the try server ===
-
-http://build.chromium.org/p/tryserver.v8/waterfall
-
-=== Access credentials ===
-
-If asked for access credentials, use your @chromium.org email address and
your generated password from [http://code.google.com/hosting/settings
googlecode.com].
--
--
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.