From 663631725ee2d633d9ec5821cd48953ffd188d00 Mon Sep 17 00:00:00 2001 From: ftrapero Date: Tue, 27 Jun 2017 12:08:38 +0200 Subject: Squashed 'nx-X11/extras/Mesa_6.4.2/' content from commit 475b1f7 git-subtree-dir: nx-X11/extras/Mesa_6.4.2 git-subtree-split: 475b1f7b56fa36ef4f3b22a749f88a98ddc0d502 --- docs/cvs_access.html | 106 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 106 insertions(+) create mode 100644 docs/cvs_access.html (limited to 'docs/cvs_access.html') diff --git a/docs/cvs_access.html b/docs/cvs_access.html new file mode 100644 index 000000000..c57f1c832 --- /dev/null +++ b/docs/cvs_access.html @@ -0,0 +1,106 @@ + + +CVS Access + + + + + +

CVS Access

+ +

+Mesa's CVS repository (code management system) is hosted on +freedesktop.org. +

+ +

+You may access the repository either as an +anonymous user (read-only) or as a +developer +(read/write). +

+ +

+You may also +browse the CVS repository. +

+ + + +

Anonymous CVS Access

+ +

+Anonymous, public, read-only access to the CVS repository is available. +Here are the basic instructions for Unix systems: +

+ +
    +
  1. Install CVS client software on your computer if needed. + Version 1.9.28 is known to work. +
  2. Login as an anonymous user: +
    +    cvs -d:pserver:anonymous@pdx.freedesktop.org:/cvs/mesa login
    +    
    + Just press Enter/Return when prompted for a password. +
    +
    +
  3. Check out the code: +
    +    cvs -d:pserver:anonymous@pdx.freedesktop.org:/cvs/mesa co Mesa
    +    
    +
+ + +

To update your Mesa CVS source to the latest CVS source:

+ +
    +
  1. cd Mesa +
  2. cvs -z3 -d:pserver:anonymous@pdx.freedesktop.org:/cvs/mesa update +
+ + +
+

Developer CVS Access

+ +

+Mesa developers working with the Mesa CVS repository need to first +have an account on +freedesktop.org. +To get an account, please ask Brian or the other Mesa developers for +permission. +Then, if there are no objections, follow this + +procedure. +

+ +

+Once your account is established, you can check out the Mesa CVS tree +with: +

+   setenv CVS_RSH ssh        (if using a csh-like shell)
+
+OR +
+   export CVS_RSH=rsh        (if using a bash-like shell)
+
+followed by: +
+   cvs -d:ext:yourusername@pdx.freedesktop.org:/cvs/mesa co Mesa
+
+ +

+Of course, replace yourusername with your actual login name. +

+ +

+Subsequent updates should only require: +

+
+   cvs update
+
+ + + + + -- cgit v1.2.3