You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nutch.apache.org by le...@apache.org on 2014/06/19 20:15:00 UTC

svn commit: r1603987 - /nutch/cms_site/trunk/content/version_control.md

Author: lewismc
Date: Thu Jun 19 18:15:00 2014
New Revision: 1603987

URL: http://svn.apache.org/r1603987
Log:
Update for Nutch version control

Modified:
    nutch/cms_site/trunk/content/version_control.md

Modified: nutch/cms_site/trunk/content/version_control.md
URL: http://svn.apache.org/viewvc/nutch/cms_site/trunk/content/version_control.md?rev=1603987&r1=1603986&r2=1603987&view=diff
==============================================================================
--- nutch/cms_site/trunk/content/version_control.md (original)
+++ nutch/cms_site/trunk/content/version_control.md Thu Jun 19 18:15:00 2014
@@ -1,14 +1,14 @@
 Title: Gora Version Control System
 
 #Overview
-Gora uses the official subversion repository of the Apache Software Foundation.
-However, Apache also provides read only mirrors for git users. Below you can find 
-how to use subversion or git to access Gora's source code.
+Nutch uses the official subversion repository of the Apache Software Foundation.
+However, Apache also provides read only mirrors for Git users. Below you can find 
+how to use Subversion or Git to access the Nutch source code.
 
 #Subversion Repository
 
 ##Subversion Clients
-The Gora source code resides in the [Apache Subversion](http://subversion.tigris.org/)
+The Nutch source code resides in the [Apache Subversion](http://subversion.tigris.org/)
 (SVN) repository. The command-line SVN client can be obtained [here](http://subversion.tigris.org/project_packages.html).
 The TortoiseSVN GUI client for Windows can be obtained [here](http://tortoisesvn.tigris.org/). 
 There are also SVN plugins available for both [Eclipse](http://subclipse.tigris.org/) and
@@ -16,32 +16,38 @@ There are also SVN plugins available for
 
 ##Web Access (read-only)
 The source code can be browsed via the Web at 
-[http://svn.apache.org/viewvc/gora/](http://svn.apache.org/viewvc/gora/).
+[http://svn.apache.org/viewvc/nutch/](http://svn.apache.org/viewvc/nutch/).
 No SVN client software is required.
 
 ##Anonymous Access (read-only)
-The SVN URL for anonymous users is [http://svn.apache.org/repos/asf/gora/trunk](http://svn.apache.org/repos/asf/gora/trunk).
+
+ * The <b>trunk</b> SVN URL for anonymous users is [http://svn.apache.org/repos/asf/nutch/trunk](http://svn.apache.org/repos/asf/nutch/trunk).
+ * The <b>2.X</b> SVN URL for anonymous users is [http://svn.apache.org/repos/asf/nutch/branches/2.x](http://svn.apache.org/repos/asf/nutch/branches/2.x).
+
 Instructions for anonymous SVN access are [here](http://www.apache.org/dev/version-control.html#anon-svn).
 
 ##Committer Access (read-write)
-The SVN URL for committers is [https://svn.apache.org/repos/asf/gora/trunk](https://svn.apache.org/repos/asf/gora/trunk).
+
+ * The <b>trunk</b> SVN URL for committers is [https://svn.apache.org/repos/asf/nutch/trunk](https://svn.apache.org/repos/asf/nutch/trunk).
+ * The <b>2.x</b> SVN URL for committers is [https://svn.apache.org/repos/asf/nutch/branches/2.x](https://svn.apache.org/repos/asf/nutch/branches/2.x).
+
 Instructions for committer SVN access are [here](http://www.apache.org/dev/version-control.html#https-svn).
 
 #Git Repository
 
 ##Anonymous Access (read-only)
-The apache git repository can be used for accessing the repository.
-The URL for anonymous read-only access is [http://git.apache.org/gora.git/](http://git.apache.org/gora.git/). 
-Alternatively the Github mirror at [http://github.com/apache/gora](http://github.com/apache/gora) can also be used. 
+The Apache Git repository can be used for accessing the repository.
+The URL for anonymous read-only access is [http://git.apache.org/nutch.git/](http://git.apache.org/nutch.git/). 
+Alternatively the Github mirror at [http://github.com/apache/nutch](http://github.com/apache/nutch) can also be used. 
 The repository can be cloned by:
 
-    $ git clone http://git.apache.org/gora.git/ 
+    $ git clone http://git.apache.org/nutch.git/ 
 
 More instructions for setting up git access can be found [here](http://www.apache.org/dev/git.html).
 
 ##Committer Access (read-write)
 Currently the subversion repository is the only official repository 
-that has Gora write access. However, committers can use the git-svn package
+that has Nutch write access. However, committers can use the git-svn package
 to bypass svn and use a git-only workflow. Setting up the initial repository
 and pushing git commits to subversion is detailed [here](http://wiki.apache.org/general/GitAtApache).