aboutsummaryrefslogtreecommitdiff
path: root/docs/busybox.net/cvs_anon.html
diff options
context:
space:
mode:
Diffstat (limited to 'docs/busybox.net/cvs_anon.html')
-rw-r--r--docs/busybox.net/cvs_anon.html57
1 files changed, 0 insertions, 57 deletions
diff --git a/docs/busybox.net/cvs_anon.html b/docs/busybox.net/cvs_anon.html
deleted file mode 100644
index f823d0535..000000000
--- a/docs/busybox.net/cvs_anon.html
+++ /dev/null
@@ -1,57 +0,0 @@
1<!--#include file="header.html" -->
2
3
4<h3>Anonymous CVS</h3>
5
6We allow anonymous (read-only) CVS access to everyone. The first command you
7need to run for anonymous CVS access is:
8<pre>
9cvs -d:pserver:anonymous@busybox.net:/var/cvs login</pre>
10<p>
11CVS will prompt you for a password. Just press the Enter key (there is no
12password for anonymous access). This step only needs to be done once, the first
13time you attempt to access CVS.
14<p>
15Once the login is complete, you can then check the list of available
16CVS modules by running the following command (all on one line):
17<pre>
18cvs -z3 -d:pserver:anonymous@busybox.net:/var/cvs co -c </pre>
19
20<p>
21If you wish, you can then check out a local copy of any of the
22available modules. The following is an example of how to grab
23a copy of busybox and tinylogin:
24<pre>
25 cvs -z3 -d:pserver:anonymous@busybox.net:/var/cvs co -P busybox tinylogin</pre>
26This will create a directory called <b>busybox</b> and a directory called
27<b>tinylogin</b> in the current directory. These directories contain the
28latest and greatest source code for busybox and tinylogin.
29
30<p>
31If you are not already familiar with using CVS, I recommend you visit
32this quick <a href="/cvs_howto.html">Introduction to CVS</a>.
33
34<p>
35I usually create a ~/.cvsrc file with the following things in it, and I
36recommend you should use the same:
37<pre>
38 -z3
39 update -dP
40 rdiff -u
41 diff -ubBwpN
42 checkout -P</pre>
43
44<p>
45Once you've checked out a copy of the source tree, you can update your
46source tree at any time so it is in sync with the latest and greatest by
47running the command:
48<pre>
49cvs update</pre>
50
51Because you've only been granted anonymous access to the tree, you won't be
52able to commit any changes. Changes can be submitted for inclusion by posting
53them to the appropriate mailing list. For those that are actively contributing
54<a href="cvs_write.html">CVS write access</a> can be made available.
55
56<!--#include file="footer.html" -->
57