diff options
author | Eric Andersen <andersen@codepoet.org> | 2003-11-08 00:33:02 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2003-11-08 00:33:02 +0000 |
commit | 0bdf41ad7e81451bc829365e0d9a676dda8145f9 (patch) | |
tree | 04d17ff6abc1113f7cd1319ae03310564ca6e2e4 | |
parent | bbce615c7ebcac05cf0f7189af498523a7923426 (diff) | |
download | busybox-w32-0bdf41ad7e81451bc829365e0d9a676dda8145f9.tar.gz busybox-w32-0bdf41ad7e81451bc829365e0d9a676dda8145f9.tar.bz2 busybox-w32-0bdf41ad7e81451bc829365e0d9a676dda8145f9.zip |
Add some basic cvs usage info
-rw-r--r-- | docs/busybox.net/cvs_anon.html | 52 |
1 files changed, 51 insertions, 1 deletions
diff --git a/docs/busybox.net/cvs_anon.html b/docs/busybox.net/cvs_anon.html index c1811d48c..f6d7415d8 100644 --- a/docs/busybox.net/cvs_anon.html +++ b/docs/busybox.net/cvs_anon.html | |||
@@ -88,6 +88,56 @@ them to the appropriate <a href="http://busybox.net/mailman/listinfo">mailing li | |||
88 | 88 | ||
89 | 89 | ||
90 | 90 | ||
91 | <TABLE WIDTH="95%" CELLSPACING=1 CELLPADDING=4 BORDER=1> | ||
92 | <TR><TD BGCOLOR="#ccccc0" ALIGN=center> | ||
93 | <A NAME="howto"> <BIG><B> | ||
94 | How to use CVS | ||
95 | </B></BIG></A> | ||
96 | </TD></TR> | ||
97 | <TR><TD BGCOLOR="#eeeee0"> | ||
98 | |||
99 | |||
100 | If you want to know all the gory details, you will want to visit | ||
101 | <a href="http://www.cvshome.org/">the CVS main web page</a>.<p> | ||
102 | For the impatient, the following is probably about all you need to know: | ||
103 | <p> | ||
104 | |||
105 | <dl> | ||
106 | <dt><pre>cvs checkout -c</pre> | ||
107 | <dd>Will list the modules available for checkout | ||
108 | <dt><pre>cvs checkout < module name ></pre> | ||
109 | <dd>Will checkout the named module | ||
110 | <dt><pre>cvs co < module name ></pre> | ||
111 | <dd>Same thing | ||
112 | <dt><pre>cvs update</pre> | ||
113 | |||
114 | <dd>Updates your local archive so it is in sync with the repository | ||
115 | -- your local updates are left intact. Tries to merge upstream updates | ||
116 | into your local updates. You will see the following tags when it is | ||
117 | updating your local repository: C means conflict, U means update, | ||
118 | P means patched, and M means modified. | ||
119 | <dt><pre>cvs up</pre> | ||
120 | <dd>Same thing | ||
121 | <dt><pre>cvs update < file name ></pre> | ||
122 | <dd>Same thing but for just the named file(s)/directory(s). | ||
123 | <dt><pre>cvs commit</pre> | ||
124 | <dd>Will check in all your work. | ||
125 | <dt><pre>cvs add < file name ></pre> | ||
126 | |||
127 | <dd>Adds the named file/directory into CVS | ||
128 | <dt><pre>cvs remove < file name ></pre> | ||
129 | <dd>Removes the named file/directory from the upstream repository. | ||
130 | <dt><pre>cvs rm < file name ></pre> | ||
131 | <dd>Same thing | ||
132 | <dt><pre>cvs log < file name ></pre> | ||
133 | |||
134 | <!-- End of Table --> | ||
135 | |||
136 | </TD></TR> | ||
137 | </TABLE> | ||
138 | |||
139 | |||
140 | |||
91 | <!-- Footer --> | 141 | <!-- Footer --> |
92 | <HR> | 142 | <HR> |
93 | <TABLE WIDTH="100%"> | 143 | <TABLE WIDTH="100%"> |
@@ -96,7 +146,7 @@ them to the appropriate <a href="http://busybox.net/mailman/listinfo">mailing li | |||
96 | <font size="-1" face="arial, helvetica, sans-serif"> | 146 | <font size="-1" face="arial, helvetica, sans-serif"> |
97 | Mail all comments, insults, suggestions and bribes to | 147 | Mail all comments, insults, suggestions and bribes to |
98 | <a href="mailto:andersen@codepoet.org">Erik Andersen</a><BR> | 148 | <a href="mailto:andersen@codepoet.org">Erik Andersen</a><BR> |
99 | The Busybox logo is copyright 1999-2002, Erik Andersen. | 149 | The Busybox logo is copyright 1999-2003, Erik Andersen. |
100 | </font> | 150 | </font> |
101 | </TD> | 151 | </TD> |
102 | 152 | ||