Revision: 10065
Author:   [email protected]
Date:     Thu Nov 24 14:57:06 2011
Log:      Shortened Git commands
http://code.google.com/p/v8/source/detail?r=10065

Modified:
 /wiki/UsingGit.wiki

=======================================
--- /wiki/UsingGit.wiki Thu Sep 22 04:19:17 2011
+++ /wiki/UsingGit.wiki Thu Nov 24 14:57:06 2011
@@ -17,41 +17,32 @@
 Clone the repository from github:

 {{{
-git clone git://github.com/v8/v8.git v8
-cd v8
+git clone git://github.com/v8/v8.git v8 && cd v8
 }}}

 == Staying up-to-date ==

+On your development branch:
+
 {{{
-git checkout master
-git pull
-git checkout <your-development-branch>
-git rebase master
+git pull --rebase origin master
 }}}

 = For project members =

 == Tracking SVN changes ==

-Project members do use `https://` prefix when accessing SVN.
+Project members use `https://` prefix when accessing SVN.
 We have a branch called `bleeding_edge`. Setting up SVN tracking
 looks like this:

 {{{
 git update-ref refs/remotes/trunk origin/bleeding_edge
git svn init -T branches/bleeding_edge --username <username> https://v8.googlecode.com/svn +git config --replace svn-remote.svn.fetch branches/bleeding_edge:refs/remotes/origin/bleeding_edge
 git svn fetch
 git branch bleeding_edge origin/bleeding_edge
 }}}
-
-For faster updates, tweak up your `.git/config`: update the `[svn-remote "svn"]` section like this:
-
-{{{
-[svn-remote "svn"]
-       url = https://v8.googlecode.com/svn
-       fetch = branches/bleeding_edge:refs/remotes/origin/bleeding_edge
-}}}

 == Full SVN checkout ==

--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev

Reply via email to