]> git.ipfire.org Git - thirdparty/git.git/blame - Documentation/git-cvsserver.txt
Docs gitk: Explicitly mention the files that gitk uses (~/.gitk)
[thirdparty/git.git] / Documentation / git-cvsserver.txt
CommitLineData
3fda8c4c
ML
1git-cvsserver(1)
2================
3
4NAME
5----
6git-cvsserver - A CVS server emulator for git
7
3fda8c4c
ML
8SYNOPSIS
9--------
693b6327
FL
10
11SSH:
12
3fda8c4c
ML
13[verse]
14export CVS_SERVER=git-cvsserver
15'cvs' -d :ext:user@server/path/repo.git co <HEAD_name>
16
693b6327
FL
17pserver (/etc/inetd.conf):
18
19[verse]
20cvspserver stream tcp nowait nobody /usr/bin/git-cvsserver git-cvsserver pserver
21
22Usage:
23
24[verse]
25'git-cvsserver' [options] [pserver|server] [<directory> ...]
26
27OPTIONS
28-------
29
30All these options obviously only make sense if enforced by the server side.
5162e697 31They have been implemented to resemble the linkgit:git-daemon[1] options as
693b6327
FL
32closely as possible.
33
34--base-path <path>::
35Prepend 'path' to requested CVSROOT
36
37--strict-paths::
38Don't allow recursing into subdirectories
39
40--export-all::
226bccb9
FL
41Don't check for `gitcvs.enabled` in config. You also have to specify a list
42of allowed directories (see below) if you want to use this option.
693b6327
FL
43
44--version, -V::
45Print version information and exit
46
47--help, -h, -H::
48Print usage information and exit
49
50<directory>::
51You can specify a list of allowed directories. If no directories
52are given, all are allowed. This is an additional restriction, gitcvs
53access still needs to be enabled by the `gitcvs.enabled` config option
54unless '--export-all' was given, too.
55
56
3fda8c4c
ML
57DESCRIPTION
58-----------
59
60This application is a CVS emulation layer for git.
61
62It is highly functional. However, not all methods are implemented,
63and for those methods that are implemented,
64not all switches are implemented.
65
66Testing has been done using both the CLI CVS client, and the Eclipse CVS
67plugin. Most functionality works fine with both of these clients.
68
69LIMITATIONS
70-----------
3fda8c4c 71
b30cc0da
ML
72Currently cvsserver works over SSH connections for read/write clients, and
73over pserver for anonymous CVS access.
74
75CVS clients cannot tag, branch or perform GIT merges.
3fda8c4c 76
b2475703
FL
77git-cvsserver maps GIT branches to CVS modules. This is very different
78from what most CVS users would expect since in CVS modules usually represent
79one or more directories.
80
3fda8c4c
ML
81INSTALLATION
82------------
b30cc0da
ML
83
841. If you are going to offer anonymous CVS access via pserver, add a line in
85 /etc/inetd.conf like
0fc8573d
FD
86+
87--
88------
b30cc0da
ML
89 cvspserver stream tcp nowait nobody git-cvsserver pserver
90
0fc8573d 91------
893c365a
FL
92Note: Some inetd servers let you specify the name of the executable
93independently of the value of argv[0] (i.e. the name the program assumes
94it was executed with). In this case the correct line in /etc/inetd.conf
95looks like
b30cc0da 96
0fc8573d 97------
893c365a 98 cvspserver stream tcp nowait nobody /usr/bin/git-cvsserver git-cvsserver pserver
b30cc0da 99
0fc8573d
FD
100------
101No special setup is needed for SSH access, other than having GIT tools
102in the PATH. If you have clients that do not accept the CVS_SERVER
54842895
FL
103environment variable, you can rename git-cvsserver to cvs.
104
db218723 105Note: Newer CVS versions (>= 1.12.11) also support specifying
54842895
FL
106CVS_SERVER directly in CVSROOT like
107
108------
109cvs -d ":ext;CVS_SERVER=git-cvsserver:user@server/path/repo.git" co <HEAD_name>
110------
111This has the advantage that it will be saved in your 'CVS/Root' files and
112you don't need to worry about always setting the correct environment
113variable.
0fc8573d 114--
3fda8c4c
ML
1152. For each repo that you want accessible from CVS you need to edit config in
116 the repo and add the following section.
0fc8573d
FD
117+
118--
119------
3fda8c4c
ML
120 [gitcvs]
121 enabled=1
b30cc0da 122 # optional for debugging
3fda8c4c
ML
123 logfile=/path/to/logfile
124
0fc8573d
FD
125------
126Note: you need to ensure each user that is going to invoke git-cvsserver has
febe7dcc
FL
127write access to the log file and to the database (see
128<<dbbackend,Database Backend>>. If you want to offer write access over
129SSH, the users of course also need write access to the git repository itself.
d55820ce 130
febe7dcc 131[[configaccessmethod]]
a192a909 132All configuration variables can also be overridden for a specific method of
d55820ce
FL
133access. Valid method names are "ext" (for SSH access) and "pserver". The
134following example configuration would disable pserver access while still
135allowing access over SSH.
136------
137 [gitcvs]
138 enabled=0
139
140 [gitcvs "ext"]
141 enabled=1
142------
0fc8573d 143--
b30cc0da
ML
1443. On the client machine you need to set the following variables.
145 CVSROOT should be set as per normal, but the directory should point at the
146 appropriate git repo. For example:
0fc8573d
FD
147+
148--
149For SSH access, CVS_SERVER should be set to git-cvsserver
b30cc0da 150
0fc8573d 151Example:
3fda8c4c 152
0fc8573d 153------
b30cc0da
ML
154 export CVSROOT=:ext:user@server:/var/git/project.git
155 export CVS_SERVER=git-cvsserver
0fc8573d
FD
156------
157--
b30cc0da
ML
1584. For SSH clients that will make commits, make sure their .bashrc file
159 sets the GIT_AUTHOR and GIT_COMMITTER variables.
160
1615. Clients should now be able to check out the project. Use the CVS 'module'
162 name to indicate what GIT 'head' you want to check out. Example:
0fc8573d
FD
163+
164------
b30cc0da 165 cvs co -d project-master master
0fc8573d 166------
3fda8c4c 167
febe7dcc
FL
168[[dbbackend]]
169Database Backend
170----------------
171
172git-cvsserver uses one database per git head (i.e. CVS module) to
173store information about the repository for faster access. The
a192a909 174database doesn't contain any persistent data and can be completely
febe7dcc 175regenerated from the git repository at any time. The database
0f76a543
FL
176needs to be updated (i.e. written to) after every commit.
177
178If the commit is done directly by using git (as opposed to
179using git-cvsserver) the update will need to happen on the
180next repository access by git-cvsserver, independent of
181access method and requested operation.
182
183That means that even if you offer only read access (e.g. by using
febe7dcc
FL
184the pserver method), git-cvsserver should have write access to
185the database to work reliably (otherwise you need to make sure
c02792ed 186that the database is up-to-date any time git-cvsserver is executed).
febe7dcc
FL
187
188By default it uses SQLite databases in the git directory, named
189`gitcvs.<module_name>.sqlite`. Note that the SQLite backend creates
190temporary files in the same directory as the database file on
191write so it might not be enough to grant the users using
192git-cvsserver write access to the database file without granting
0f76a543 193them write access to the directory, too.
febe7dcc
FL
194
195You can configure the database backend with the following
196configuration variables:
197
198Configuring database backend
199~~~~~~~~~~~~~~~~~~~~~~~~~~~~
200
201git-cvsserver uses the Perl DBI module. Please also read
202its documentation if changing these variables, especially
203about `DBI->connect()`.
204
205gitcvs.dbname::
206 Database name. The exact meaning depends on the
a5d86f74 207 selected database driver, for SQLite this is a filename.
febe7dcc
FL
208 Supports variable substitution (see below). May
209 not contain semicolons (`;`).
210 Default: '%Ggitcvs.%m.sqlite'
211
212gitcvs.dbdriver::
213 Used DBI driver. You can specify any available driver
214 for this here, but it might not work. cvsserver is tested
215 with 'DBD::SQLite', reported to work with
216 'DBD::Pg', and reported *not* to work with 'DBD::mysql'.
217 Please regard this as an experimental feature. May not
a5d86f74 218 contain colons (`:`).
febe7dcc
FL
219 Default: 'SQLite'
220
221gitcvs.dbuser::
222 Database user. Only useful if setting `dbdriver`, since
223 SQLite has no concept of database users. Supports variable
224 substitution (see below).
225
226gitcvs.dbpass::
227 Database password. Only useful if setting `dbdriver`, since
228 SQLite has no concept of database passwords.
229
230All variables can also be set per access method, see <<configaccessmethod,above>>.
231
232Variable substitution
233^^^^^^^^^^^^^^^^^^^^^
234In `dbdriver` and `dbuser` you can use the following variables:
235
236%G::
237 git directory name
238%g::
239 git directory name, where all characters except for
240 alpha-numeric ones, `.`, and `-` are replaced with
241 `_` (this should make it easier to use the directory
242 name in a filename if wanted)
243%m::
244 CVS module/git head name
245%a::
246 access method (one of "ext" or "pserver")
247%u::
248 Name of the user running git-cvsserver.
249 If no name can be determined, the
250 numeric uid is used.
251
ee75d4cd
ML
252Eclipse CVS Client Notes
253------------------------
254
255To get a checkout with the Eclipse CVS client:
256
b30cc0da
ML
2571. Select "Create a new project -> From CVS checkout"
2582. Create a new location. See the notes below for details on how to choose the
259 right protocol.
2603. Browse the 'modules' available. It will give you a list of the heads in
261 the repository. You will not be able to browse the tree from there. Only
262 the heads.
2634. Pick 'HEAD' when it asks what branch/tag to check out. Untick the
264 "launch commit wizard" to avoid committing the .project file.
265
abda1ef5 266Protocol notes: If you are using anonymous access via pserver, just select that.
b30cc0da
ML
267Those using SSH access should choose the 'ext' protocol, and configure 'ext'
268access on the Preferences->Team->CVS->ExtConnection pane. Set CVS_SERVER to
e94a4f6e 269'git-cvsserver'. Note that password support is not good when using 'ext',
b30cc0da
ML
270you will definitely want to have SSH keys setup.
271
272Alternatively, you can just use the non-standard extssh protocol that Eclipse
273offer. In that case CVS_SERVER is ignored, and you will have to replace
e94a4f6e 274the cvs utility on the server with git-cvsserver or manipulate your `.bashrc`
b30cc0da 275so that calling 'cvs' effectively calls git-cvsserver.
ee75d4cd
ML
276
277Clients known to work
278---------------------
279
ad0f8c9e
FL
280- CVS 1.12.9 on Debian
281- CVS 1.11.17 on MacOSX (from Fink package)
282- Eclipse 3.0, 3.1.2 on MacOSX (see Eclipse CVS Client Notes)
283- TortoiseCVS
ee75d4cd 284
3fda8c4c
ML
285Operations supported
286--------------------
287
288All the operations required for normal use are supported, including
289checkout, diff, status, update, log, add, remove, commit.
290Legacy monitoring operations are not supported (edit, watch and related).
291Exports and tagging (tags and branches) are not supported at this stage.
292
e94a4f6e 293The server should set the '-k' mode to binary when relevant, however,
d8b6a1a1 294this is not really implemented yet. For now, you can force the server
e94a4f6e 295to set '-kb' for all files by setting the `gitcvs.allbinary` config
d8b6a1a1
FL
296variable. In proper GIT tradition, the contents of the files are
297always respected. No keyword expansion or newline munging is supported.
3fda8c4c
ML
298
299Dependencies
300------------
301
302git-cvsserver depends on DBD::SQLite.
303
304Copyright and Authors
305---------------------
306
307This program is copyright The Open University UK - 2006.
308
ad0f8c9e
FL
309Authors:
310
311- Martyn Smith <martyn@catalyst.net.nz>
312- Martin Langhoff <martin@catalyst.net.nz>
313
314with ideas and patches from participants of the git-list <git@vger.kernel.org>.
3fda8c4c
ML
315
316Documentation
317--------------
ad0f8c9e 318Documentation by Martyn Smith <martyn@catalyst.net.nz>, Martin Langhoff <martin@catalyst.net.nz>, and Matthias Urlichs <smurf@smurf.noris.de>.
3fda8c4c
ML
319
320GIT
321---
5162e697 322Part of the linkgit:git[7] suite