You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by ch...@apache.org on 2011/01/08 18:26:05 UTC

svn commit: r1056742 - in /activemq/activemq-apollo/trunk/apollo-website/src/community: developers.page source.page

Author: chirino
Date: Sat Jan  8 17:26:05 2011
New Revision: 1056742

URL: http://svn.apache.org/viewvc?rev=1056742&view=rev
Log:
Doco how to create a git clone of the source code.

Modified:
    activemq/activemq-apollo/trunk/apollo-website/src/community/developers.page
    activemq/activemq-apollo/trunk/apollo-website/src/community/source.page

Modified: activemq/activemq-apollo/trunk/apollo-website/src/community/developers.page
URL: http://svn.apache.org/viewvc/activemq/activemq-apollo/trunk/apollo-website/src/community/developers.page?rev=1056742&r1=1056741&r2=1056742&view=diff
==============================================================================
--- activemq/activemq-apollo/trunk/apollo-website/src/community/developers.page (original)
+++ activemq/activemq-apollo/trunk/apollo-website/src/community/developers.page Sat Jan  8 17:26:05 2011
@@ -25,6 +25,7 @@ Ready to start hacking on ${project_name
 
 # Developer Links
 
+* [Source Code](source.html)
 * [Building](building.html)
 * [Contributing](contributing.html)
 * [Release Guide](release-guide.html)

Modified: activemq/activemq-apollo/trunk/apollo-website/src/community/source.page
URL: http://svn.apache.org/viewvc/activemq/activemq-apollo/trunk/apollo-website/src/community/source.page?rev=1056742&r1=1056741&r2=1056742&view=diff
==============================================================================
--- activemq/activemq-apollo/trunk/apollo-website/src/community/source.page (original)
+++ activemq/activemq-apollo/trunk/apollo-website/src/community/source.page Sat Jan  8 17:26:05 2011
@@ -101,4 +101,25 @@ Get the latest source code
     * read the [documentation](../documentation/index.html)
     * browse the [developer links and maven reports](developers.html)
     
+.left
+  :markdown
+    # Git Clone
+    
+.right
+  :&markdown
+    You can get a git clone of the svn repository using the following script:
+    
+          mkdir activemq-apollo
+        cd activemq-apollo
+        git init
+        echo "Updating .git/authors.txt"
+        cd ".git"
+        curl "http://git.apache.org/authors.txt" > authors.txt
+        cd ".."
+        git config svn.authorsfile ".git/authors.txt"
+        git svn init --prefix=asf/ --tags=tags --trunk=trunk --branches=branches https://svn.apache.org/repos/asf/activemq/activemq-apollo
+        git svn fetch --log-window-size 10000
+        git svn rebase
+  
+