]> git.ipfire.org Git - thirdparty/git.git/blame - Documentation/git-cvsserver.txt
Merge branch 'jc/maint-combined-diff-work-tree' into maint
[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 13[verse]
da9973c6 14export CVS_SERVER="git cvsserver"
3fda8c4c
ML
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]
0b444cdb 25'git-cvsserver' [options] [pserver|server] [<directory> ...]
693b6327
FL
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 43
3240240f
SB
44-V::
45--version::
693b6327
FL
46Print version information and exit
47
3240240f
SB
48-h::
49-H::
50--help::
693b6327
FL
51Print usage information and exit
52
53<directory>::
54You can specify a list of allowed directories. If no directories
55are given, all are allowed. This is an additional restriction, gitcvs
56access still needs to be enabled by the `gitcvs.enabled` config option
57unless '--export-all' was given, too.
58
59
3fda8c4c
ML
60DESCRIPTION
61-----------
62
63This application is a CVS emulation layer for git.
64
65It is highly functional. However, not all methods are implemented,
66and for those methods that are implemented,
67not all switches are implemented.
68
69Testing has been done using both the CLI CVS client, and the Eclipse CVS
70plugin. Most functionality works fine with both of these clients.
71
72LIMITATIONS
73-----------
3fda8c4c 74
b30cc0da 75CVS clients cannot tag, branch or perform GIT merges.
3fda8c4c 76
ba020ef5 77'git-cvsserver' maps GIT branches to CVS modules. This is very different
b2475703
FL
78from what most CVS users would expect since in CVS modules usually represent
79one or more directories.
80
3fda8c4c
ML
81INSTALLATION
82------------
b30cc0da 83
031a027a 841. If you are going to offer CVS access via pserver, add a line in
b30cc0da 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 100------
031a027a
ÆAB
101
102Only anonymous access is provided by pserve by default. To commit you
c057bad3
SV
103will have to create pserver accounts, simply add a gitcvs.authdb
104setting in the config file of the repositories you want the cvsserver
105to allow writes to, for example:
031a027a
ÆAB
106
107------
108
c057bad3
SV
109 [gitcvs]
110 authdb = /etc/cvsserver/passwd
031a027a
ÆAB
111
112------
c057bad3
SV
113The format of these files is username followed by the crypted password,
114for example:
115
116------
117 myuser:$1Oyx5r9mdGZ2
118 myuser:$1$BA)@$vbnMJMDym7tA32AamXrm./
119------
120You can use the 'htpasswd' facility that comes with Apache to make these
121files, but Apache's MD5 crypt method differs from the one used by most C
122library's crypt() function, so don't use the -m option.
123
70d5dd1f
ÆAB
124Alternatively you can produce the password with perl's crypt() operator:
125-----
126 perl -e 'my ($user, $pass) = @ARGV; printf "%s:%s\n", $user, crypt($user, $pass)' $USER password
127-----
128
031a027a
ÆAB
129Then provide your password via the pserver method, for example:
130------
131 cvs -d:pserver:someuser:somepassword <at> server/path/repo.git co <HEAD_name>
132------
0fc8573d
FD
133No special setup is needed for SSH access, other than having GIT tools
134in the PATH. If you have clients that do not accept the CVS_SERVER
ba020ef5 135environment variable, you can rename 'git-cvsserver' to `cvs`.
54842895 136
db218723 137Note: Newer CVS versions (>= 1.12.11) also support specifying
54842895
FL
138CVS_SERVER directly in CVSROOT like
139
140------
da9973c6 141cvs -d ":ext;CVS_SERVER=git cvsserver:user@server/path/repo.git" co <HEAD_name>
54842895
FL
142------
143This has the advantage that it will be saved in your 'CVS/Root' files and
144you don't need to worry about always setting the correct environment
ba020ef5
JN
145variable. SSH users restricted to 'git-shell' don't need to override the default
146with CVS_SERVER (and shouldn't) as 'git-shell' understands `cvs` to mean
2fd02c92 147'git-cvsserver' and pretends that the other end runs the real 'cvs' better.
0fc8573d 148--
3fda8c4c
ML
1492. For each repo that you want accessible from CVS you need to edit config in
150 the repo and add the following section.
0fc8573d
FD
151+
152--
153------
3fda8c4c
ML
154 [gitcvs]
155 enabled=1
b30cc0da 156 # optional for debugging
3fda8c4c
ML
157 logfile=/path/to/logfile
158
0fc8573d 159------
ba020ef5 160Note: you need to ensure each user that is going to invoke 'git-cvsserver' has
febe7dcc
FL
161write access to the log file and to the database (see
162<<dbbackend,Database Backend>>. If you want to offer write access over
163SSH, the users of course also need write access to the git repository itself.
d55820ce 164
a41a32bf
MO
165You also need to ensure that each repository is "bare" (without a git index
166file) for `cvs commit` to work. See linkgit:gitcvs-migration[7].
167
febe7dcc 168[[configaccessmethod]]
a192a909 169All configuration variables can also be overridden for a specific method of
d55820ce
FL
170access. Valid method names are "ext" (for SSH access) and "pserver". The
171following example configuration would disable pserver access while still
172allowing access over SSH.
173------
174 [gitcvs]
175 enabled=0
176
177 [gitcvs "ext"]
178 enabled=1
179------
0fc8573d 180--
2c2d02a6
SC
1813. If you didn't specify the CVSROOT/CVS_SERVER directly in the checkout command,
182 automatically saving it in your 'CVS/Root' files, then you need to set them
183 explicitly in your environment. CVSROOT should be set as per normal, but the
184 directory should point at the appropriate git repo. As above, for SSH clients
ba020ef5 185 _not_ restricted to 'git-shell', CVS_SERVER should be set to 'git-cvsserver'.
0fc8573d
FD
186+
187--
0fc8573d 188------
b30cc0da 189 export CVSROOT=:ext:user@server:/var/git/project.git
da9973c6 190 export CVS_SERVER="git cvsserver"
0fc8573d
FD
191------
192--
2c2d02a6
SC
1934. For SSH clients that will make commits, make sure their server-side
194 .ssh/environment files (or .bashrc, etc., according to their specific shell)
195 export appropriate values for GIT_AUTHOR_NAME, GIT_AUTHOR_EMAIL,
196 GIT_COMMITTER_NAME, and GIT_COMMITTER_EMAIL. For SSH clients whose login
197 shell is bash, .bashrc may be a reasonable alternative.
b30cc0da
ML
198
1995. Clients should now be able to check out the project. Use the CVS 'module'
2c2d02a6
SC
200 name to indicate what GIT 'head' you want to check out. This also sets the
201 name of your newly checked-out directory, unless you tell it otherwise with
202 `-d <dir_name>`. For example, this checks out 'master' branch to the
203 `project-master` directory:
0fc8573d
FD
204+
205------
b30cc0da 206 cvs co -d project-master master
0fc8573d 207------
3fda8c4c 208
febe7dcc
FL
209[[dbbackend]]
210Database Backend
211----------------
212
ba020ef5 213'git-cvsserver' uses one database per git head (i.e. CVS module) to
2fdc0cfc
MO
214store information about the repository to maintain consistent
215CVS revision numbers. The database needs to be
216updated (i.e. written to) after every commit.
0f76a543 217
483bc4f0 218If the commit is done directly by using `git` (as opposed to
ba020ef5
JN
219using 'git-cvsserver') the update will need to happen on the
220next repository access by 'git-cvsserver', independent of
0f76a543
FL
221access method and requested operation.
222
223That means that even if you offer only read access (e.g. by using
ba020ef5 224the pserver method), 'git-cvsserver' should have write access to
febe7dcc 225the database to work reliably (otherwise you need to make sure
ba020ef5 226that the database is up-to-date any time 'git-cvsserver' is executed).
febe7dcc
FL
227
228By default it uses SQLite databases in the git directory, named
229`gitcvs.<module_name>.sqlite`. Note that the SQLite backend creates
230temporary files in the same directory as the database file on
231write so it might not be enough to grant the users using
ba020ef5 232'git-cvsserver' write access to the database file without granting
0f76a543 233them write access to the directory, too.
febe7dcc 234
2fdc0cfc
MO
235The database can not be reliably regenerated in a
236consistent form after the branch it is tracking has changed.
237Example: For merged branches, 'git-cvsserver' only tracks
0b444cdb 238one branch of development, and after a 'git merge' an
2fdc0cfc
MO
239incrementally updated database may track a different branch
240than a database regenerated from scratch, causing inconsistent
241CVS revision numbers. `git-cvsserver` has no way of knowing which
242branch it would have picked if it had been run incrementally
243pre-merge. So if you have to fully or partially (from old
244backup) regenerate the database, you should be suspicious
245of pre-existing CVS sandboxes.
246
febe7dcc
FL
247You can configure the database backend with the following
248configuration variables:
249
250Configuring database backend
251~~~~~~~~~~~~~~~~~~~~~~~~~~~~
252
ba020ef5 253'git-cvsserver' uses the Perl DBI module. Please also read
febe7dcc 254its documentation if changing these variables, especially
715e716a 255about `DBI\->connect()`.
febe7dcc
FL
256
257gitcvs.dbname::
258 Database name. The exact meaning depends on the
a5d86f74 259 selected database driver, for SQLite this is a filename.
febe7dcc
FL
260 Supports variable substitution (see below). May
261 not contain semicolons (`;`).
262 Default: '%Ggitcvs.%m.sqlite'
263
264gitcvs.dbdriver::
265 Used DBI driver. You can specify any available driver
266 for this here, but it might not work. cvsserver is tested
267 with 'DBD::SQLite', reported to work with
268 'DBD::Pg', and reported *not* to work with 'DBD::mysql'.
269 Please regard this as an experimental feature. May not
a5d86f74 270 contain colons (`:`).
febe7dcc
FL
271 Default: 'SQLite'
272
273gitcvs.dbuser::
274 Database user. Only useful if setting `dbdriver`, since
275 SQLite has no concept of database users. Supports variable
276 substitution (see below).
277
278gitcvs.dbpass::
279 Database password. Only useful if setting `dbdriver`, since
280 SQLite has no concept of database passwords.
281
6aeeffd1
JE
282gitcvs.dbTableNamePrefix::
283 Database table name prefix. Supports variable substitution
284 (see below). Any non-alphabetic characters will be replaced
285 with underscores.
286
febe7dcc
FL
287All variables can also be set per access method, see <<configaccessmethod,above>>.
288
289Variable substitution
290^^^^^^^^^^^^^^^^^^^^^
291In `dbdriver` and `dbuser` you can use the following variables:
292
293%G::
294 git directory name
295%g::
296 git directory name, where all characters except for
297 alpha-numeric ones, `.`, and `-` are replaced with
298 `_` (this should make it easier to use the directory
299 name in a filename if wanted)
300%m::
301 CVS module/git head name
302%a::
303 access method (one of "ext" or "pserver")
304%u::
ba020ef5 305 Name of the user running 'git-cvsserver'.
febe7dcc
FL
306 If no name can be determined, the
307 numeric uid is used.
308
03bd0d60
PM
309ENVIRONMENT
310-----------
311
312These variables obviate the need for command-line options in some
313circumstances, allowing easier restricted usage through git-shell.
314
315GIT_CVSSERVER_BASE_PATH takes the place of the argument to --base-path.
316
317GIT_CVSSERVER_ROOT specifies a single-directory whitelist. The
318repository must still be configured to allow access through
319git-cvsserver, as described above.
320
321When these environment variables are set, the corresponding
322command-line arguments may not be used.
323
ee75d4cd
ML
324Eclipse CVS Client Notes
325------------------------
326
327To get a checkout with the Eclipse CVS client:
328
b30cc0da
ML
3291. Select "Create a new project -> From CVS checkout"
3302. Create a new location. See the notes below for details on how to choose the
331 right protocol.
3323. Browse the 'modules' available. It will give you a list of the heads in
333 the repository. You will not be able to browse the tree from there. Only
334 the heads.
3354. Pick 'HEAD' when it asks what branch/tag to check out. Untick the
336 "launch commit wizard" to avoid committing the .project file.
337
abda1ef5 338Protocol notes: If you are using anonymous access via pserver, just select that.
b30cc0da
ML
339Those using SSH access should choose the 'ext' protocol, and configure 'ext'
340access on the Preferences->Team->CVS->ExtConnection pane. Set CVS_SERVER to
ca768288 341"`git cvsserver`". Note that password support is not good when using 'ext',
b30cc0da
ML
342you will definitely want to have SSH keys setup.
343
344Alternatively, you can just use the non-standard extssh protocol that Eclipse
345offer. In that case CVS_SERVER is ignored, and you will have to replace
ba020ef5
JN
346the cvs utility on the server with 'git-cvsserver' or manipulate your `.bashrc`
347so that calling 'cvs' effectively calls 'git-cvsserver'.
ee75d4cd
ML
348
349Clients known to work
350---------------------
351
ad0f8c9e
FL
352- CVS 1.12.9 on Debian
353- CVS 1.11.17 on MacOSX (from Fink package)
354- Eclipse 3.0, 3.1.2 on MacOSX (see Eclipse CVS Client Notes)
355- TortoiseCVS
ee75d4cd 356
3fda8c4c
ML
357Operations supported
358--------------------
359
360All the operations required for normal use are supported, including
361checkout, diff, status, update, log, add, remove, commit.
362Legacy monitoring operations are not supported (edit, watch and related).
363Exports and tagging (tags and branches) are not supported at this stage.
364
8a06a632 365CRLF Line Ending Conversions
b592d88f 366~~~~~~~~~~~~~~~~~~~~~~~~~~~~
8a06a632
MO
367
368By default the server leaves the '-k' mode blank for all files,
6b677a28
VS
369which causes the CVS client to treat them as a text files, subject
370to end-of-line conversion on some platforms.
8a06a632 371
5ec3e670
EB
372You can make the server use the end-of-line conversion attributes to
373set the '-k' modes for files by setting the `gitcvs.usecrlfattr`
374config variable. See linkgit:gitattributes[5] for more information
375about end-of-line conversion.
8a06a632
MO
376
377Alternatively, if `gitcvs.usecrlfattr` config is not enabled
5ec3e670 378or the attributes do not allow automatic detection for a filename, then
90948a42
MO
379the server uses the `gitcvs.allbinary` config for the default setting.
380If `gitcvs.allbinary` is set, then file not otherwise
8a06a632 381specified will default to '-kb' mode. Otherwise the '-k' mode
90948a42
MO
382is left blank. But if `gitcvs.allbinary` is set to "guess", then
383the correct '-k' mode will be guessed based on the contents of
384the file.
385
2fd02c92 386For best consistency with 'cvs', it is probably best to override the
90948a42
MO
387defaults by setting `gitcvs.usecrlfattr` to true,
388and `gitcvs.allbinary` to "guess".
3fda8c4c
ML
389
390Dependencies
391------------
ba020ef5 392'git-cvsserver' depends on DBD::SQLite.
3fda8c4c 393
3fda8c4c
ML
394GIT
395---
9e1f0a85 396Part of the linkgit:git[1] suite