Autogenerated manpages for v2.45.2-457-g8d94c
[git-manpages.git] / man1 / git-cvsserver.1
blob3428639892336e37ff3a7d45c52f5f4ed10e32ca
1 '\" t
2 .\"     Title: git-cvsserver
3 .\"    Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
4 .\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
5 .\"      Date: 2024-06-10
6 .\"    Manual: Git Manual
7 .\"    Source: Git 2.45.2.457.g8d94cfb545
8 .\"  Language: English
9 .\"
10 .TH "GIT\-CVSSERVER" "1" "2024\-06\-10" "Git 2\&.45\&.2\&.457\&.g8d94cf" "Git Manual"
11 .\" -----------------------------------------------------------------
12 .\" * Define some portability stuff
13 .\" -----------------------------------------------------------------
14 .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
15 .\" http://bugs.debian.org/507673
16 .\" http://lists.gnu.org/archive/html/groff/2009-02/msg00013.html
17 .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
18 .ie \n(.g .ds Aq \(aq
19 .el       .ds Aq '
20 .\" -----------------------------------------------------------------
21 .\" * set default formatting
22 .\" -----------------------------------------------------------------
23 .\" disable hyphenation
24 .nh
25 .\" disable justification (adjust text to left margin only)
26 .ad l
27 .\" -----------------------------------------------------------------
28 .\" * MAIN CONTENT STARTS HERE *
29 .\" -----------------------------------------------------------------
30 .SH "NAME"
31 git-cvsserver \- A CVS server emulator for Git
32 .SH "SYNOPSIS"
33 .sp
34 SSH:
35 .sp
36 .nf
37 export CVS_SERVER="git cvsserver"
38 \fIcvs\fR \-d :ext:user@server/path/repo\&.git co <HEAD_name>
39 .fi
40 .sp
41 .sp
42 pserver (/etc/inetd\&.conf):
43 .sp
44 .nf
45 cvspserver stream tcp nowait nobody /usr/bin/git\-cvsserver git\-cvsserver pserver
46 .fi
47 .sp
48 .sp
49 Usage:
50 .sp
51 .nf
52 \fIgit\-cvsserver\fR [<options>] [pserver|server] [<directory> \&...]
53 .fi
54 .sp
55 .SH "DESCRIPTION"
56 .sp
57 This application is a CVS emulation layer for Git\&.
58 .sp
59 It is highly functional\&. However, not all methods are implemented, and for those methods that are implemented, not all switches are implemented\&.
60 .sp
61 Testing has been done using both the CLI CVS client, and the Eclipse CVS plugin\&. Most functionality works fine with both of these clients\&.
62 .SH "OPTIONS"
63 .sp
64 All these options obviously only make sense if enforced by the server side\&. They have been implemented to resemble the \fBgit-daemon\fR(1) options as closely as possible\&.
65 .PP
66 \-\-base\-path <path>
67 .RS 4
68 Prepend
69 \fIpath\fR
70 to requested CVSROOT
71 .RE
72 .PP
73 \-\-strict\-paths
74 .RS 4
75 Don\(cqt allow recursing into subdirectories
76 .RE
77 .PP
78 \-\-export\-all
79 .RS 4
80 Don\(cqt check for
81 \fBgitcvs\&.enabled\fR
82 in config\&. You also have to specify a list of allowed directories (see below) if you want to use this option\&.
83 .RE
84 .PP
85 \-V, \-\-version
86 .RS 4
87 Print version information and exit
88 .RE
89 .PP
90 \-h, \-H, \-\-help
91 .RS 4
92 Print usage information and exit
93 .RE
94 .PP
95 <directory>
96 .RS 4
97 The remaining arguments provide a list of directories\&. If no directories are given, then all are allowed\&. Repositories within these directories still require the
98 \fBgitcvs\&.enabled\fR
99 config option, unless
100 \fB\-\-export\-all\fR
101 is specified\&.
103 .SH "LIMITATIONS"
105 CVS clients cannot tag, branch or perform Git merges\&.
107 \fIgit\-cvsserver\fR maps Git branches to CVS modules\&. This is very different from what most CVS users would expect since in CVS modules usually represent one or more directories\&.
108 .SH "INSTALLATION"
110 .RS 4
111 .ie n \{\
112 \h'-04' 1.\h'+01'\c
114 .el \{\
115 .sp -1
116 .IP "  1." 4.2
118 If you are going to offer CVS access via pserver, add a line in /etc/inetd\&.conf like
120 .if n \{\
121 .RS 4
124    cvspserver stream tcp nowait nobody git\-cvsserver pserver
126 .if n \{\
130 Note: Some inetd servers let you specify the name of the executable independently of the value of argv[0] (i\&.e\&. the name the program assumes it was executed with)\&. In this case the correct line in /etc/inetd\&.conf looks like
132 .if n \{\
133 .RS 4
136    cvspserver stream tcp nowait nobody /usr/bin/git\-cvsserver git\-cvsserver pserver
138 .if n \{\
142 Only anonymous access is provided by pserver by default\&. To commit you will have to create pserver accounts, simply add a gitcvs\&.authdb setting in the config file of the repositories you want the cvsserver to allow writes to, for example:
144 .if n \{\
145 .RS 4
148    [gitcvs]
149         authdb = /etc/cvsserver/passwd
151 .if n \{\
155 The format of these files is username followed by the encrypted password, for example:
157 .if n \{\
158 .RS 4
161    myuser:sqkNi8zPf01HI
162    myuser:$1$9K7FzU28$VfF6EoPYCJEYcVQwATgOP/
163    myuser:$5$\&.NqmNH1vwfzGpV8B$znZIcumu1tNLATgV2l6e1/mY8RzhUDHMOaVOeL1cxV3
165 .if n \{\
169 You can use the
170 \fIhtpasswd\fR
171 facility that comes with Apache to make these files, but only with the \-d option (or \-B if your system supports it)\&.
173 Preferably use the system specific utility that manages password hash creation in your platform (e\&.g\&. mkpasswd in Linux, encrypt in OpenBSD or pwhash in NetBSD) and paste it in the right location\&.
175 Then provide your password via the pserver method, for example:
177 .if n \{\
178 .RS 4
181    cvs \-d:pserver:someuser:somepassword@server:/path/repo\&.git co <HEAD_name>
183 .if n \{\
187 No special setup is needed for SSH access, other than having Git tools in the PATH\&. If you have clients that do not accept the CVS_SERVER environment variable, you can rename
188 \fIgit\-cvsserver\fR
190 \fBcvs\fR\&.
192 Note: Newer CVS versions (>= 1\&.12\&.11) also support specifying CVS_SERVER directly in CVSROOT like
194 .if n \{\
195 .RS 4
198    cvs \-d ":ext;CVS_SERVER=git cvsserver:user@server/path/repo\&.git" co <HEAD_name>
200 .if n \{\
204 This has the advantage that it will be saved in your
205 \fICVS/Root\fR
206 files and you don\(cqt need to worry about always setting the correct environment variable\&. SSH users restricted to
207 \fIgit\-shell\fR
208 don\(cqt need to override the default with CVS_SERVER (and shouldn\(cqt) as
209 \fIgit\-shell\fR
210 understands
211 \fBcvs\fR
212 to mean
213 \fIgit\-cvsserver\fR
214 and pretends that the other end runs the real
215 \fIcvs\fR
216 better\&.
219 .RS 4
220 .ie n \{\
221 \h'-04' 2.\h'+01'\c
223 .el \{\
224 .sp -1
225 .IP "  2." 4.2
227 For each repo that you want accessible from CVS you need to edit config in the repo and add the following section\&.
229 .if n \{\
230 .RS 4
233    [gitcvs]
234         enabled=1
235         # optional for debugging
236         logFile=/path/to/logfile
238 .if n \{\
242 Note: you need to ensure each user that is going to invoke
243 \fIgit\-cvsserver\fR
244 has write access to the log file and to the database (see
245 Database Backend\&. If you want to offer write access over SSH, the users of course also need write access to the Git repository itself\&.
247 You also need to ensure that each repository is "bare" (without a Git index file) for
248 \fBcvs commit\fR
249 to work\&. See
250 \fBgitcvs-migration\fR(7)\&.
252 All configuration variables can also be overridden for a specific method of access\&. Valid method names are "ext" (for SSH access) and "pserver"\&. The following example configuration would disable pserver access while still allowing access over SSH\&.
254 .if n \{\
255 .RS 4
258    [gitcvs]
259         enabled=0
261    [gitcvs "ext"]
262         enabled=1
264 .if n \{\
270 .RS 4
271 .ie n \{\
272 \h'-04' 3.\h'+01'\c
274 .el \{\
275 .sp -1
276 .IP "  3." 4.2
278 If you didn\(cqt specify the CVSROOT/CVS_SERVER directly in the checkout command, automatically saving it in your
279 \fICVS/Root\fR
280 files, then you need to set them explicitly in your environment\&. CVSROOT should be set as per normal, but the directory should point at the appropriate Git repo\&. As above, for SSH clients
281 \fInot\fR
282 restricted to
283 \fIgit\-shell\fR, CVS_SERVER should be set to
284 \fIgit\-cvsserver\fR\&.
286 .if n \{\
287 .RS 4
290    export CVSROOT=:ext:user@server:/var/git/project\&.git
291    export CVS_SERVER="git cvsserver"
293 .if n \{\
299 .RS 4
300 .ie n \{\
301 \h'-04' 4.\h'+01'\c
303 .el \{\
304 .sp -1
305 .IP "  4." 4.2
307 For SSH clients that will make commits, make sure their server\-side \&.ssh/environment files (or \&.bashrc, etc\&., according to their specific shell) export appropriate values for GIT_AUTHOR_NAME, GIT_AUTHOR_EMAIL, GIT_COMMITTER_NAME, and GIT_COMMITTER_EMAIL\&. For SSH clients whose login shell is bash, \&.bashrc may be a reasonable alternative\&.
310 .RS 4
311 .ie n \{\
312 \h'-04' 5.\h'+01'\c
314 .el \{\
315 .sp -1
316 .IP "  5." 4.2
318 Clients should now be able to check out the project\&. Use the CVS
319 \fImodule\fR
320 name to indicate what Git
321 \fIhead\fR
322 you want to check out\&. This also sets the name of your newly checked\-out directory, unless you tell it otherwise with
323 \fB\-d <dir\-name>\fR\&. For example, this checks out
324 \fImaster\fR
325 branch to the
326 \fBproject\-master\fR
327 directory:
329 .if n \{\
330 .RS 4
333    cvs co \-d project\-master master
335 .if n \{\
340 .SH "DATABASE BACKEND"
342 \fIgit\-cvsserver\fR uses one database per Git head (i\&.e\&. CVS module) to store information about the repository to maintain consistent CVS revision numbers\&. The database needs to be updated (i\&.e\&. written to) after every commit\&.
344 If the commit is done directly by using \fBgit\fR (as opposed to using \fIgit\-cvsserver\fR) the update will need to happen on the next repository access by \fIgit\-cvsserver\fR, independent of access method and requested operation\&.
346 That means that even if you offer only read access (e\&.g\&. by using the pserver method), \fIgit\-cvsserver\fR should have write access to the database to work reliably (otherwise you need to make sure that the database is up to date any time \fIgit\-cvsserver\fR is executed)\&.
348 By default it uses SQLite databases in the Git directory, named \fBgitcvs\&.<module\-name>\&.sqlite\fR\&. Note that the SQLite backend creates temporary files in the same directory as the database file on write so it might not be enough to grant the users using \fIgit\-cvsserver\fR write access to the database file without granting them write access to the directory, too\&.
350 The database cannot be reliably regenerated in a consistent form after the branch it is tracking has changed\&. Example: For merged branches, \fIgit\-cvsserver\fR only tracks one branch of development, and after a \fIgit merge\fR an incrementally updated database may track a different branch than a database regenerated from scratch, causing inconsistent CVS revision numbers\&. \fBgit\-cvsserver\fR has no way of knowing which branch it would have picked if it had been run incrementally pre\-merge\&. So if you have to fully or partially (from old backup) regenerate the database, you should be suspicious of pre\-existing CVS sandboxes\&.
352 You can configure the database backend with the following configuration variables:
353 .SS "Configuring database backend"
355 \fIgit\-cvsserver\fR uses the Perl DBI module\&. Please also read its documentation if changing these variables, especially about \fBDBI\->connect()\fR\&.
357 gitcvs\&.dbName
358 .RS 4
359 Database name\&. The exact meaning depends on the selected database driver, for SQLite this is a filename\&. Supports variable substitution (see below)\&. May not contain semicolons (\fB;\fR)\&. Default:
360 \fI%Ggitcvs\&.%m\&.sqlite\fR
363 gitcvs\&.dbDriver
364 .RS 4
365 Used DBI driver\&. You can specify any available driver for this here, but it might not work\&. cvsserver is tested with
366 \fIDBD::SQLite\fR, reported to work with
367 \fIDBD::Pg\fR, and reported
368 \fBnot\fR
369 to work with
370 \fIDBD::mysql\fR\&. Please regard this as an experimental feature\&. May not contain colons (\fB:\fR)\&. Default:
371 \fISQLite\fR
374 gitcvs\&.dbuser
375 .RS 4
376 Database user\&. Only useful if setting
377 \fBdbDriver\fR, since SQLite has no concept of database users\&. Supports variable substitution (see below)\&.
380 gitcvs\&.dbPass
381 .RS 4
382 Database password\&. Only useful if setting
383 \fBdbDriver\fR, since SQLite has no concept of database passwords\&.
386 gitcvs\&.dbTableNamePrefix
387 .RS 4
388 Database table name prefix\&. Supports variable substitution (see below)\&. Any non\-alphabetic characters will be replaced with underscores\&.
391 All variables can also be set per access method, see above\&.
393 .it 1 an-trap
394 .nr an-no-space-flag 1
395 .nr an-break-flag 1
397 .ps +1
398 \fBVariable substitution\fR
399 .RS 4
401 In \fBdbDriver\fR and \fBdbUser\fR you can use the following variables:
404 .RS 4
405 Git directory name
409 .RS 4
410 Git directory name, where all characters except for alphanumeric ones,
411 \fB\&.\fR, and
412 \fB\-\fR
413 are replaced with
414 \fB_\fR
415 (this should make it easier to use the directory name in a filename if wanted)
419 .RS 4
420 CVS module/Git head name
424 .RS 4
425 access method (one of "ext" or "pserver")
429 .RS 4
430 Name of the user running
431 \fIgit\-cvsserver\fR\&. If no name can be determined, the numeric uid is used\&.
434 .SH "ENVIRONMENT"
436 These variables obviate the need for command\-line options in some circumstances, allowing easier restricted usage through git\-shell\&.
438 GIT_CVSSERVER_BASE_PATH
439 .RS 4
440 This variable replaces the argument to \-\-base\-path\&.
443 GIT_CVSSERVER_ROOT
444 .RS 4
445 This variable specifies a single directory, replacing the
446 \fB<directory>\&.\&.\&.\fR
447 argument list\&. The repository still requires the
448 \fBgitcvs\&.enabled\fR
449 config option, unless
450 \fB\-\-export\-all\fR
451 is specified\&.
454 When these environment variables are set, the corresponding command\-line arguments may not be used\&.
455 .SH "ECLIPSE CVS CLIENT NOTES"
457 To get a checkout with the Eclipse CVS client:
459 .RS 4
460 .ie n \{\
461 \h'-04' 1.\h'+01'\c
463 .el \{\
464 .sp -1
465 .IP "  1." 4.2
467 Select "Create a new project \(-> From CVS checkout"
470 .RS 4
471 .ie n \{\
472 \h'-04' 2.\h'+01'\c
474 .el \{\
475 .sp -1
476 .IP "  2." 4.2
478 Create a new location\&. See the notes below for details on how to choose the right protocol\&.
481 .RS 4
482 .ie n \{\
483 \h'-04' 3.\h'+01'\c
485 .el \{\
486 .sp -1
487 .IP "  3." 4.2
489 Browse the
490 \fImodules\fR
491 available\&. It will give you a list of the heads in the repository\&. You will not be able to browse the tree from there\&. Only the heads\&.
494 .RS 4
495 .ie n \{\
496 \h'-04' 4.\h'+01'\c
498 .el \{\
499 .sp -1
500 .IP "  4." 4.2
502 Pick
503 \fBHEAD\fR
504 when it asks what branch/tag to check out\&. Untick the "launch commit wizard" to avoid committing the \&.project file\&.
507 Protocol notes: If you are using anonymous access via pserver, just select that\&. Those using SSH access should choose the \fIext\fR protocol, and configure \fIext\fR access on the Preferences\(->Team\(->CVS\(->ExtConnection pane\&. Set CVS_SERVER to "\fBgit cvsserver\fR"\&. Note that password support is not good when using \fIext\fR, you will definitely want to have SSH keys setup\&.
509 Alternatively, you can just use the non\-standard extssh protocol that Eclipse offer\&. In that case CVS_SERVER is ignored, and you will have to replace the cvs utility on the server with \fIgit\-cvsserver\fR or manipulate your \fB\&.bashrc\fR so that calling \fIcvs\fR effectively calls \fIgit\-cvsserver\fR\&.
510 .SH "CLIENTS KNOWN TO WORK"
512 .RS 4
513 .ie n \{\
514 \h'-04'\(bu\h'+03'\c
516 .el \{\
517 .sp -1
518 .IP \(bu 2.3
520 CVS 1\&.12\&.9 on Debian
523 .RS 4
524 .ie n \{\
525 \h'-04'\(bu\h'+03'\c
527 .el \{\
528 .sp -1
529 .IP \(bu 2.3
531 CVS 1\&.11\&.17 on MacOSX (from Fink package)
534 .RS 4
535 .ie n \{\
536 \h'-04'\(bu\h'+03'\c
538 .el \{\
539 .sp -1
540 .IP \(bu 2.3
542 Eclipse 3\&.0, 3\&.1\&.2 on MacOSX (see Eclipse CVS Client Notes)
545 .RS 4
546 .ie n \{\
547 \h'-04'\(bu\h'+03'\c
549 .el \{\
550 .sp -1
551 .IP \(bu 2.3
553 TortoiseCVS
555 .SH "OPERATIONS SUPPORTED"
557 All the operations required for normal use are supported, including checkout, diff, status, update, log, add, remove, commit\&.
559 Most CVS command arguments that read CVS tags or revision numbers (typically \-r) work, and also support any git refspec (tag, branch, commit ID, etc)\&. However, CVS revision numbers for non\-default branches are not well emulated, and cvs log does not show tags or branches at all\&. (Non\-main\-branch CVS revision numbers superficially resemble CVS revision numbers, but they actually encode a git commit ID directly, rather than represent the number of revisions since the branch point\&.)
561 Note that there are two ways to checkout a particular branch\&. As described elsewhere on this page, the "module" parameter of cvs checkout is interpreted as a branch name, and it becomes the main branch\&. It remains the main branch for a given sandbox even if you temporarily make another branch sticky with cvs update \-r\&. Alternatively, the \-r argument can indicate some other branch to actually checkout, even though the module is still the "main" branch\&. Tradeoffs (as currently implemented): Each new "module" creates a new database on disk with a history for the given module, and after the database is created, operations against that main branch are fast\&. Or alternatively, \-r doesn\(cqt take any extra disk space, but may be significantly slower for many operations, like cvs update\&.
563 If you want to refer to a git refspec that has characters that are not allowed by CVS, you have two options\&. First, it may just work to supply the git refspec directly to the appropriate CVS \-r argument; some CVS clients don\(cqt seem to do much sanity checking of the argument\&. Second, if that fails, you can use a special character escape mechanism that only uses characters that are valid in CVS tags\&. A sequence of 4 or 5 characters of the form (underscore (\fB"_"\fR), dash (\fB"\-"\fR), one or two characters, and dash (\fB"\-"\fR)) can encode various characters based on the one or two letters: \fB"s"\fR for slash (\fB"/"\fR), \fB"p"\fR for period (\fB"\&."\fR), \fB"u"\fR for underscore (\fB"_"\fR), or two hexadecimal digits for any byte value at all (typically an ASCII number, or perhaps a part of a UTF\-8 encoded character)\&.
565 Legacy monitoring operations are not supported (edit, watch and related)\&. Exports and tagging (tags and branches) are not supported at this stage\&.
566 .SS "CRLF Line Ending Conversions"
568 By default the server leaves the \fB\-k\fR mode blank for all files, which causes the CVS client to treat them as a text files, subject to end\-of\-line conversion on some platforms\&.
570 You can make the server use the end\-of\-line conversion attributes to set the \fB\-k\fR modes for files by setting the \fBgitcvs\&.usecrlfattr\fR config variable\&. See \fBgitattributes\fR(5) for more information about end\-of\-line conversion\&.
572 Alternatively, if \fBgitcvs\&.usecrlfattr\fR config is not enabled or the attributes do not allow automatic detection for a filename, then the server uses the \fBgitcvs\&.allBinary\fR config for the default setting\&. If \fBgitcvs\&.allBinary\fR is set, then file not otherwise specified will default to \fI\-kb\fR mode\&. Otherwise the \fB\-k\fR mode is left blank\&. But if \fBgitcvs\&.allBinary\fR is set to "guess", then the correct \fB\-k\fR mode will be guessed based on the contents of the file\&.
574 For best consistency with \fIcvs\fR, it is probably best to override the defaults by setting \fBgitcvs\&.usecrlfattr\fR to true, and \fBgitcvs\&.allBinary\fR to "guess"\&.
575 .SH "DEPENDENCIES"
577 \fIgit\-cvsserver\fR depends on DBD::SQLite\&.
578 .SH "GIT"
580 Part of the \fBgit\fR(1) suite