You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flume.apache.org by hs...@apache.org on 2012/07/31 00:30:37 UTC

svn commit: r1367343 - /flume/site/trunk/content/sphinx/source.rst

Author: hshreedharan
Date: Mon Jul 30 22:30:37 2012
New Revision: 1367343

URL: http://svn.apache.org/viewvc?rev=1367343&view=rev
Log:
Updating source.html to reflect the move to git.

(Hari Shreedharan)


Modified:
    flume/site/trunk/content/sphinx/source.rst

Modified: flume/site/trunk/content/sphinx/source.rst
URL: http://svn.apache.org/viewvc/flume/site/trunk/content/sphinx/source.rst?rev=1367343&r1=1367342&r2=1367343&view=diff
==============================================================================
--- flume/site/trunk/content/sphinx/source.rst (original)
+++ flume/site/trunk/content/sphinx/source.rst Mon Jul 30 22:30:37 2012
@@ -4,8 +4,8 @@ Source Repository
 
 .. rubric:: Overview
 
-This project uses `Subversion <http://subversion.apache.org/>`_ to manage its source code. Instructions on
-Subversion use can be found in the `Subversion documentation <http://svnbook.red-bean.com/>`_.
+This project uses `Git <http://git-scm.com/>`_ to manage its source code. Instructions on
+Git use can be found in the `Git documentation <http://git-scm.com/documentation/>`_.
 
 .. rubric:: Web Access
 
@@ -19,41 +19,40 @@ The following is a link to the online so
 
 .. rubric:: Anonymous Access
 
-The source can be checked out anonymously from SVN with this command:::
+The source can be checked out anonymously from git with this command:::
 
-    $ svn checkout http://svn.apache.org/repos/asf/flume/trunk flume
+    $ git clone http://git-wip-us.apache.org/repos/asf/flume.git flume
 
 .. rubric:: Developer Access
 
-Everyone can access the Subversion repository via HTTP, but Committers must checkout the Subversion repository via HTTPS.::
+Everyone can access the Git repository via HTTP, but Committers must clone the git repository via HTTPS.::
 
-    $ svn checkout https://svn.apache.org/repos/asf/flume/trunk flume
+    $ git clone https://git-wip-us.apache.org/repos/asf/flume.git flume
+
+To commit changes to your local repository, execute the following command to commit your changes::
+
+    $ git commit -m "A message"
+
+To push this to the Apache repository, execute the following command::
+
+    $ git push -u origin trunk
+
+For more details, please read: `Git at Apache <https://git-wip-us.apache.org/>`_.
 
-To commit changes to the repository, execute the following command to commit your changes (svn will prompt you for
-your password)::
 
-    $ svn commit --username your-username -m "A message"
 
 .. rubric:: Access From Behind a Firewall
 
 For those users who are stuck behind a corporate firewall which is blocking HTTP access to the Subversion repository,
 you can try to access it via the developer connection:::
 
-    $ svn checkout https://svn.apache.org/repos/asf/flume/trunk flume
+    $ git clone https://git-wip-us.apache.org/repos/asf/flume.git flume
 
 .. rubric:: Access Through a Proxy
 
-The Subversion client can go through a proxy, if you configure it to do so. First, edit your "servers" configuration
-file to indicate which proxy to use. The file's location depends on your operating system. On Linux or Unix it is
-located in the directory "~/.subversion". On Windows it is in "%APPDATA%\Subversion". (Try "echo %APPDATA",
-note this is a hidden directory.)
-
-There are comments in the file explaining what to do. If you don't have that file, get the latest Subversion client
-and run any command; this will cause the configuration directory and template files to be created.
-
-Example: Edit the 'servers' file and add something like:::
-
-    [global]
-    http-proxy-host = your.proxy.name
-    http-proxy-port = 3128
+The Subversion client can go through a proxy, if you configure it to do so. To configure git to use a proxy:::
+    $ git config http.proxy address:port
+
+Then do a git clone as usual:::
+    $ git clone http://git-wip-us.apache.org/repos/asf/flume.git flume