source: basicnet/netprogs/cvs.xml@ c1ed818

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 6.0 6.1 6.2 6.2.0 6.2.0-rc1 6.2.0-rc2 6.3 6.3-rc1 6.3-rc2 6.3-rc3 7.10 7.4 7.5 7.6 7.6-blfs 7.6-systemd 7.7 7.8 7.9 8.0 8.1 8.2 8.3 8.4 9.0 9.1 basic bdubbs/svn elogind gnome kde5-13430 kde5-14269 kde5-14686 kea ken/TL2024 ken/inkscape-core-mods ken/tuningfonts krejzi/svn lazarus lxqt nosym perl-modules plabs/newcss plabs/python-mods python3.11 qt5new rahul/power-profiles-daemon renodr/vulkan-addition systemd-11177 systemd-13485 trunk upgradedb xry111/intltool xry111/llvm18 xry111/soup3 xry111/test-20220226 xry111/xf86-video-removal
Last change on this file since c1ed818 was 5cd0959d, checked in by Archaic <archaic@…>, 20 years ago

Resetting keywords

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@2592 af4574ff-66df-0310-9fd7-8a98e5e911e0

  • Property mode set to 100644
File size: 3.9 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.3//EN"
3 "http://www.oasis-open.org/docbook/xml/4.3/docbookx.dtd" [
4 <!ENTITY % general-entities SYSTEM "../../general.ent">
5 %general-entities;
6
7 <!ENTITY cvs-download-http "https://ccvs.cvshome.org/files/documents/19/191/cvs-&cvs-version;.tar.bz2">
8 <!ENTITY cvs-download-ftp " ">
9 <!ENTITY cvs-size "2.3 MB">
10 <!ENTITY cvs-buildsize "20 MB">
11 <!ENTITY cvs-time "0.31 SBU">
12]>
13
14<sect1 id="cvs" xreflabel="CVS-&cvs-version;">
15<sect1info>
16<othername>$LastChangedBy$</othername>
17<date>$Date$</date>
18</sect1info>
19<?dbhtml filename="cvs.html"?>
20<title>CVS-&cvs-version;</title>
21
22<sect2>
23<title>Introduction to <application><acronym>CVS</acronym></application></title>
24
25<para><application><acronym>CVS</acronym></application> is the Concurrent
26Versioning System. This is a version control system useful for projects
27using a central repository to hold files and then track all changes made to
28those files. These instructions install the client used to manipulate the
29repository, creation of a repository is covered at <xref linkend="cvsserver"/>.
30</para>
31
32<sect3><title>Package information</title>
33<itemizedlist spacing='compact'>
34<listitem><para>Download (HTTP): <ulink url="&cvs-download-http;"/></para></listitem>
35<listitem><para>Download (FTP): <ulink url="&cvs-download-ftp;"/></para></listitem>
36<listitem><para>Download size: &cvs-size;</para></listitem>
37<listitem><para>Estimated Disk space required: &cvs-buildsize;</para></listitem>
38<listitem><para>Estimated build time: &cvs-time;</para></listitem></itemizedlist>
39</sect3>
40
41<sect3><title><application>CVS</application> dependencies</title>
42<sect4><title>Optional</title>
43<para>
44<xref linkend="gdbm"/>,
45<ulink url="http://www.pdc.kth.se/kth-krb/">krb4</ulink>,
46<xref linkend="mitkrb"/> or <xref linkend="heimdal"/>,
47<xref linkend="gs"/> or <xref linkend="espgs"/>,
48<ulink url="../server/mail.html">MTA</ulink> and
49<xref linkend="postlfs-editors-vim"/>
50</para></sect4>
51</sect3>
52
53</sect2>
54
55<sect2>
56<title>Installation of <application><acronym>CVS</acronym></application></title>
57
58<para>Install <application><acronym>cvs</acronym></application> by running the following commands:</para>
59
60<screen><userinput><command>./configure --prefix=/usr &amp;&amp;
61make &amp;&amp;
62make install</command></userinput></screen>
63
64</sect2>
65
66<sect2>
67<title>Configuring <application><acronym>CVS</acronym></application></title>
68
69<sect3><title>Config files</title>
70<para><filename>~/.cvsrc</filename>, <filename>~/.cvswrappers</filename></para>
71</sect3>
72
73<sect3><title>Configuration Information</title>
74
75<para><filename>~/.cvsrc</filename> is the main
76<application><acronym>CVS</acronym></application> configuration file.
77This file is used by users to specify defaults for different <command>cvs
78</command> commands, for example to make all <command>cvs diff</command>
79commands run with <userinput>-u</userinput>, a user would add <userinput>
80diff -u</userinput> to their <filename>.cvsrc</filename> file.</para>
81
82<para><filename>~/.cvswrappers</filename> specifies wrappers to be used in
83addition to those specified in the <filename>CVSROOT/cvswrappers</filename>
84file in the repository.</para>
85
86<para><filename>~/.cvspass</filename> can hold passwords to complete
87logins to servers.</para></sect3>
88
89</sect2>
90
91<sect2>
92<title>Contents</title>
93
94<para>The <application><acronym>CVS</acronym></application> package contains
95<command>cvs</command>, <command>cvsbug</command> and <command>rcs2log</command>.</para>
96
97</sect2>
98
99<sect2><title>Description</title>
100
101<sect3><title>cvs</title>
102<para>This is the main program file for the concurrent versioning
103system.</para></sect3>
104
105<sect3><title>cvsbug</title>
106<para>This is used to send problem reports about
107<application><acronym>CVS</acronym></application> to a central
108support site.</para></sect3>
109
110<sect3><title>rcs2log</title>
111<para><acronym>RCS</acronym> to Change Log generator.</para></sect3>
112
113</sect2>
114
115</sect1>
Note: See TracBrowser for help on using the repository browser.