You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@maven.apache.org by jv...@apache.org on 2002/12/04 18:25:45 UTC

cvs commit: jakarta-turbine-maven/src/plugins-build/xdoc/templates cvs-usage.xml

jvanzyl     2002/12/04 09:25:45

  Added:       src/plugins-build/xdoc/templates cvs-usage.xml
  Log:
  o A reminder to update the cvs page with instructions first which point to
    the web view of the source repository. Someone else feel free to make this
    work properly.
  
  Revision  Changes    Path
  1.1                  jakarta-turbine-maven/src/plugins-build/xdoc/templates/cvs-usage.xml
  
  Index: cvs-usage.xml
  ===================================================================
  <?xml version="1.0"?>
  <document>
  
    <properties>
      <author email="turbine-maven-dev@jakarta.apache.org">Maven</author>
      <title>CVS</title>
    </properties>
  
    <body>
      <section name="Anonymous CVS Access">
  
        <p>
        This project's CVS repository can be checked out through anonymous (pserver) 
        CVS with the following instruction set. 
        When prompted for a password for anonymous, simply press the Enter key.
        </p>
  
  <pre>
  cvs -d:$project.repository.connection login
   
  cvs -z3 -d:pserver:anonymous@$project.repository.connection co $project.id
  </pre>
  
      <p>
      Updates from within the module's directory do not need the -d parameter.
      </p>
    </section>
  
    <section name="Developer CVS Access via SSH">
  
      <p>
      Only project developers can access the CVS tree via this method. 
      SSH1 must be installed on your client machine. Substitute <b>name</b> 
      with the proper value. Enter your site password when prompted.
      </p>
  
  <pre>
  export CVS_RSH=ssh
   
  cvs -z3 -d:ext:$project.repository.connection.anonUser@$project.repository.connection co $project.id
  </pre>
  
      </section>
    </body>
  
  </document>