source: basicnet/netprogs/subversion.xml@ d807b5e

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 d807b5e was d807b5e, checked in by DJ Lucas <dj@…>, 20 years ago

grammar and spelling in subversion-- thanks randy

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

  • Property mode set to 100644
File size: 4.5 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 subversion-download-http "http://subversion.tigris.org/tarballs/subversion-&subversion-version;.tar.bz2">
8 <!ENTITY subversion-download-ftp " ">
9 <!ENTITY subversion-size "5.8 MB">
10 <!ENTITY subversion-buildsize "99 MB">
11 <!ENTITY subversion-time "0.80 SBU">
12]>
13
14<sect1 id="subversion" xreflabel="Subversion-&subversion-version;">
15<?dbhtml filename="subversion.html"?>
16<title>Subversion-&subversion-version;</title>
17
18<sect2>
19<title>Introduction to <application>Subversion</application></title>
20
21<para><application>Subversion</application> is a version control system that
22is designed to be a compelling replacement for <acronym>CVS</acronym> in
23the open source community. It extends and enhances <acronym>CVS</acronym>'s
24feature set, while maintaining a similar interface for those already familiar
25with <acronym>CVS</acronym>. These instructions install the client used to
26manipulate a <application>Subversion</application> repository.</para>
27<!-- , creation of a repository is covered at <xref linkend="svnserver"/>. -->
28
29<sect3><title>Package information</title>
30<itemizedlist spacing='compact'>
31<listitem><para>Download (HTTP): <ulink url="&subversion-download-http;"/></para></listitem>
32<listitem><para>Download (FTP): <ulink url="&subversion-download-ftp;"/></para></listitem>
33<listitem><para>Download size: &subversion-size;</para></listitem>
34<listitem><para>Estimated Disk space required: &subversion-buildsize;</para></listitem>
35<listitem><para>Estimated build time: &subversion-time;</para></listitem></itemizedlist>
36</sect3>
37
38<sect3><title><application>Subversion</application> dependencies</title>
39<sect4><title>Required</title>
40<para><xref linkend="db"/> and <xref linkend="libxml2"/>.</para></sect4>
41<sect4><title>Optional</title>
42<para>
43<xref linkend="apache"/>,
44<xref linkend="openssl"/>,
45<xref linkend="openssh"/>,
46<xref linkend="Python"/>,
47<xref linkend="j2sdk"/>,
48<ulink url="http://www.swig.org">SWIG</ulink> and
49<xref linkend="heimdal"/> or <xref linkend="mitkrb"/>.
50</para></sect4>
51</sect3>
52
53</sect2>
54
55<sect2>
56<title>Installation of <application>Subversion</application></title>
57
58<para>Install <application>Subversion</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>Subversion</application></title>
68
69<sect3><title>Config files</title>
70<para><filename>~/.subversion/config</filename>, <filename>/etc/subversion/config</filename></para>
71</sect3>
72
73<sect3><title>Configuration Information</title>
74
75<para><filename>/etc/subversion/config</filename> is the
76<application>Subversion</application> system-wide configuration file.
77This file is used to specify defaults for different
78<command>svn</command> commands.</para>
79
80<para><filename>~/.subversion/config</filename> is the user's personal
81configuration file. It is used to override the system-wide defaults
82set in <filename>/etc/subversion/config</filename>.</para>
83</sect3>
84
85</sect2>
86
87<sect2>
88<title>Contents</title>
89
90<para>The <application>Subversion</application> package contains
91<command>svn</command>, <command>svnversion</command>,
92<command>svnlook</command>, <command>svnadmin</command>,
93<command>svndumpfilter</command>, <command>mod_dav_svn</command>
94and <command>svnserve</command>.</para>
95
96</sect2>
97
98<sect2><title>Description</title>
99
100<sect3><title>svn</title>
101<para>The command-line client program.</para></sect3>
102
103<sect3><title>svnversion</title>
104<para>A program for reporting the state of a working copy.</para></sect3>
105
106<sect3><title>svnlook</title>
107<para>A tool for inspecting a Subversion repository.</para></sect3>
108
109<sect3><title>svnadmin</title>
110<para>A tool for creating, tweaking or repairing a Subversion
111repository.</para></sect3>
112
113<sect3><title>svndumpfilter</title>
114<para>A program for filtering Subversion repository dumpfile format
115streams.</para></sect3>
116
117<sect3><title>mod_dav_svn</title>
118<para>A plug-in module for the Apache HTTP Server, used to make your
119repository available to others over a network.</para></sect3>
120
121<sect3><title>svnserve</title>
122<para>A custom standalone server program, able to run as a daemon process or
123invoked by <acronym>SSH</acronym>.</para></sect3>
124
125</sect2>
126
127</sect1>
128
Note: See TracBrowser for help on using the repository browser.