]> git.ipfire.org Git - thirdparty/git.git/blame - Documentation/git-cvsserver.txt
Rename the "crlf" attribute "text"
[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
ML
75Currently cvsserver works over SSH connections for read/write clients, and
76over pserver for anonymous CVS access.
77
78CVS clients cannot tag, branch or perform GIT merges.
3fda8c4c 79
ba020ef5 80'git-cvsserver' maps GIT branches to CVS modules. This is very different
b2475703
FL
81from what most CVS users would expect since in CVS modules usually represent
82one or more directories.
83
3fda8c4c
ML
84INSTALLATION
85------------
b30cc0da
ML
86
871. If you are going to offer anonymous CVS access via pserver, add a line in
88 /etc/inetd.conf like
0fc8573d
FD
89+
90--
91------
b30cc0da
ML
92 cvspserver stream tcp nowait nobody git-cvsserver pserver
93
0fc8573d 94------
893c365a
FL
95Note: Some inetd servers let you specify the name of the executable
96independently of the value of argv[0] (i.e. the name the program assumes
97it was executed with). In this case the correct line in /etc/inetd.conf
98looks like
b30cc0da 99
0fc8573d 100------
893c365a 101 cvspserver stream tcp nowait nobody /usr/bin/git-cvsserver git-cvsserver pserver
b30cc0da 102
0fc8573d
FD
103------
104No special setup is needed for SSH access, other than having GIT tools
105in the PATH. If you have clients that do not accept the CVS_SERVER
ba020ef5 106environment variable, you can rename 'git-cvsserver' to `cvs`.
54842895 107
db218723 108Note: Newer CVS versions (>= 1.12.11) also support specifying
54842895
FL
109CVS_SERVER directly in CVSROOT like
110
111------
da9973c6 112cvs -d ":ext;CVS_SERVER=git cvsserver:user@server/path/repo.git" co <HEAD_name>
54842895
FL
113------
114This has the advantage that it will be saved in your 'CVS/Root' files and
115you don't need to worry about always setting the correct environment
ba020ef5
JN
116variable. SSH users restricted to 'git-shell' don't need to override the default
117with CVS_SERVER (and shouldn't) as 'git-shell' understands `cvs` to mean
2fd02c92 118'git-cvsserver' and pretends that the other end runs the real 'cvs' better.
0fc8573d 119--
3fda8c4c
ML
1202. For each repo that you want accessible from CVS you need to edit config in
121 the repo and add the following section.
0fc8573d
FD
122+
123--
124------
3fda8c4c
ML
125 [gitcvs]
126 enabled=1
b30cc0da 127 # optional for debugging
3fda8c4c
ML
128 logfile=/path/to/logfile
129
0fc8573d 130------
ba020ef5 131Note: you need to ensure each user that is going to invoke 'git-cvsserver' has
febe7dcc
FL
132write access to the log file and to the database (see
133<<dbbackend,Database Backend>>. If you want to offer write access over
134SSH, the users of course also need write access to the git repository itself.
d55820ce 135
a41a32bf
MO
136You also need to ensure that each repository is "bare" (without a git index
137file) for `cvs commit` to work. See linkgit:gitcvs-migration[7].
138
febe7dcc 139[[configaccessmethod]]
a192a909 140All configuration variables can also be overridden for a specific method of
d55820ce
FL
141access. Valid method names are "ext" (for SSH access) and "pserver". The
142following example configuration would disable pserver access while still
143allowing access over SSH.
144------
145 [gitcvs]
146 enabled=0
147
148 [gitcvs "ext"]
149 enabled=1
150------
0fc8573d 151--
2c2d02a6
SC
1523. If you didn't specify the CVSROOT/CVS_SERVER directly in the checkout command,
153 automatically saving it in your 'CVS/Root' files, then you need to set them
154 explicitly in your environment. CVSROOT should be set as per normal, but the
155 directory should point at the appropriate git repo. As above, for SSH clients
ba020ef5 156 _not_ restricted to 'git-shell', CVS_SERVER should be set to 'git-cvsserver'.
0fc8573d
FD
157+
158--
0fc8573d 159------
b30cc0da 160 export CVSROOT=:ext:user@server:/var/git/project.git
da9973c6 161 export CVS_SERVER="git cvsserver"
0fc8573d
FD
162------
163--
2c2d02a6
SC
1644. For SSH clients that will make commits, make sure their server-side
165 .ssh/environment files (or .bashrc, etc., according to their specific shell)
166 export appropriate values for GIT_AUTHOR_NAME, GIT_AUTHOR_EMAIL,
167 GIT_COMMITTER_NAME, and GIT_COMMITTER_EMAIL. For SSH clients whose login
168 shell is bash, .bashrc may be a reasonable alternative.
b30cc0da
ML
169
1705. Clients should now be able to check out the project. Use the CVS 'module'
2c2d02a6
SC
171 name to indicate what GIT 'head' you want to check out. This also sets the
172 name of your newly checked-out directory, unless you tell it otherwise with
173 `-d <dir_name>`. For example, this checks out 'master' branch to the
174 `project-master` directory:
0fc8573d
FD
175+
176------
b30cc0da 177 cvs co -d project-master master
0fc8573d 178------
3fda8c4c 179
febe7dcc
FL
180[[dbbackend]]
181Database Backend
182----------------
183
ba020ef5 184'git-cvsserver' uses one database per git head (i.e. CVS module) to
2fdc0cfc
MO
185store information about the repository to maintain consistent
186CVS revision numbers. The database needs to be
187updated (i.e. written to) after every commit.
0f76a543 188
483bc4f0 189If the commit is done directly by using `git` (as opposed to
ba020ef5
JN
190using 'git-cvsserver') the update will need to happen on the
191next repository access by 'git-cvsserver', independent of
0f76a543
FL
192access method and requested operation.
193
194That means that even if you offer only read access (e.g. by using
ba020ef5 195the pserver method), 'git-cvsserver' should have write access to
febe7dcc 196the database to work reliably (otherwise you need to make sure
ba020ef5 197that the database is up-to-date any time 'git-cvsserver' is executed).
febe7dcc
FL
198
199By default it uses SQLite databases in the git directory, named
200`gitcvs.<module_name>.sqlite`. Note that the SQLite backend creates
201temporary files in the same directory as the database file on
202write so it might not be enough to grant the users using
ba020ef5 203'git-cvsserver' write access to the database file without granting
0f76a543 204them write access to the directory, too.
febe7dcc 205
2fdc0cfc
MO
206The database can not be reliably regenerated in a
207consistent form after the branch it is tracking has changed.
208Example: For merged branches, 'git-cvsserver' only tracks
0b444cdb 209one branch of development, and after a 'git merge' an
2fdc0cfc
MO
210incrementally updated database may track a different branch
211than a database regenerated from scratch, causing inconsistent
212CVS revision numbers. `git-cvsserver` has no way of knowing which
213branch it would have picked if it had been run incrementally
214pre-merge. So if you have to fully or partially (from old
215backup) regenerate the database, you should be suspicious
216of pre-existing CVS sandboxes.
217
febe7dcc
FL
218You can configure the database backend with the following
219configuration variables:
220
221Configuring database backend
222~~~~~~~~~~~~~~~~~~~~~~~~~~~~
223
ba020ef5 224'git-cvsserver' uses the Perl DBI module. Please also read
febe7dcc
FL
225its documentation if changing these variables, especially
226about `DBI->connect()`.
227
228gitcvs.dbname::
229 Database name. The exact meaning depends on the
a5d86f74 230 selected database driver, for SQLite this is a filename.
febe7dcc
FL
231 Supports variable substitution (see below). May
232 not contain semicolons (`;`).
233 Default: '%Ggitcvs.%m.sqlite'
234
235gitcvs.dbdriver::
236 Used DBI driver. You can specify any available driver
237 for this here, but it might not work. cvsserver is tested
238 with 'DBD::SQLite', reported to work with
239 'DBD::Pg', and reported *not* to work with 'DBD::mysql'.
240 Please regard this as an experimental feature. May not
a5d86f74 241 contain colons (`:`).
febe7dcc
FL
242 Default: 'SQLite'
243
244gitcvs.dbuser::
245 Database user. Only useful if setting `dbdriver`, since
246 SQLite has no concept of database users. Supports variable
247 substitution (see below).
248
249gitcvs.dbpass::
250 Database password. Only useful if setting `dbdriver`, since
251 SQLite has no concept of database passwords.
252
6aeeffd1
JE
253gitcvs.dbTableNamePrefix::
254 Database table name prefix. Supports variable substitution
255 (see below). Any non-alphabetic characters will be replaced
256 with underscores.
257
febe7dcc
FL
258All variables can also be set per access method, see <<configaccessmethod,above>>.
259
260Variable substitution
261^^^^^^^^^^^^^^^^^^^^^
262In `dbdriver` and `dbuser` you can use the following variables:
263
264%G::
265 git directory name
266%g::
267 git directory name, where all characters except for
268 alpha-numeric ones, `.`, and `-` are replaced with
269 `_` (this should make it easier to use the directory
270 name in a filename if wanted)
271%m::
272 CVS module/git head name
273%a::
274 access method (one of "ext" or "pserver")
275%u::
ba020ef5 276 Name of the user running 'git-cvsserver'.
febe7dcc
FL
277 If no name can be determined, the
278 numeric uid is used.
279
03bd0d60
PM
280ENVIRONMENT
281-----------
282
283These variables obviate the need for command-line options in some
284circumstances, allowing easier restricted usage through git-shell.
285
286GIT_CVSSERVER_BASE_PATH takes the place of the argument to --base-path.
287
288GIT_CVSSERVER_ROOT specifies a single-directory whitelist. The
289repository must still be configured to allow access through
290git-cvsserver, as described above.
291
292When these environment variables are set, the corresponding
293command-line arguments may not be used.
294
ee75d4cd
ML
295Eclipse CVS Client Notes
296------------------------
297
298To get a checkout with the Eclipse CVS client:
299
b30cc0da
ML
3001. Select "Create a new project -> From CVS checkout"
3012. Create a new location. See the notes below for details on how to choose the
302 right protocol.
3033. Browse the 'modules' available. It will give you a list of the heads in
304 the repository. You will not be able to browse the tree from there. Only
305 the heads.
3064. Pick 'HEAD' when it asks what branch/tag to check out. Untick the
307 "launch commit wizard" to avoid committing the .project file.
308
abda1ef5 309Protocol notes: If you are using anonymous access via pserver, just select that.
b30cc0da
ML
310Those using SSH access should choose the 'ext' protocol, and configure 'ext'
311access on the Preferences->Team->CVS->ExtConnection pane. Set CVS_SERVER to
ca768288 312"`git cvsserver`". Note that password support is not good when using 'ext',
b30cc0da
ML
313you will definitely want to have SSH keys setup.
314
315Alternatively, you can just use the non-standard extssh protocol that Eclipse
316offer. In that case CVS_SERVER is ignored, and you will have to replace
ba020ef5
JN
317the cvs utility on the server with 'git-cvsserver' or manipulate your `.bashrc`
318so that calling 'cvs' effectively calls 'git-cvsserver'.
ee75d4cd
ML
319
320Clients known to work
321---------------------
322
ad0f8c9e
FL
323- CVS 1.12.9 on Debian
324- CVS 1.11.17 on MacOSX (from Fink package)
325- Eclipse 3.0, 3.1.2 on MacOSX (see Eclipse CVS Client Notes)
326- TortoiseCVS
ee75d4cd 327
3fda8c4c
ML
328Operations supported
329--------------------
330
331All the operations required for normal use are supported, including
332checkout, diff, status, update, log, add, remove, commit.
333Legacy monitoring operations are not supported (edit, watch and related).
334Exports and tagging (tags and branches) are not supported at this stage.
335
8a06a632 336CRLF Line Ending Conversions
b592d88f 337~~~~~~~~~~~~~~~~~~~~~~~~~~~~
8a06a632
MO
338
339By default the server leaves the '-k' mode blank for all files,
340which causes the cvs client to treat them as a text files, subject
341to crlf conversion on some platforms.
342
5ec3e670
EB
343You can make the server use the end-of-line conversion attributes to
344set the '-k' modes for files by setting the `gitcvs.usecrlfattr`
345config variable. See linkgit:gitattributes[5] for more information
346about end-of-line conversion.
8a06a632
MO
347
348Alternatively, if `gitcvs.usecrlfattr` config is not enabled
5ec3e670 349or the attributes do not allow automatic detection for a filename, then
90948a42
MO
350the server uses the `gitcvs.allbinary` config for the default setting.
351If `gitcvs.allbinary` is set, then file not otherwise
8a06a632 352specified will default to '-kb' mode. Otherwise the '-k' mode
90948a42
MO
353is left blank. But if `gitcvs.allbinary` is set to "guess", then
354the correct '-k' mode will be guessed based on the contents of
355the file.
356
2fd02c92 357For best consistency with 'cvs', it is probably best to override the
90948a42
MO
358defaults by setting `gitcvs.usecrlfattr` to true,
359and `gitcvs.allbinary` to "guess".
3fda8c4c
ML
360
361Dependencies
362------------
ba020ef5 363'git-cvsserver' depends on DBD::SQLite.
3fda8c4c
ML
364
365Copyright and Authors
366---------------------
367
368This program is copyright The Open University UK - 2006.
369
ad0f8c9e
FL
370Authors:
371
372- Martyn Smith <martyn@catalyst.net.nz>
373- Martin Langhoff <martin@catalyst.net.nz>
374
375with ideas and patches from participants of the git-list <git@vger.kernel.org>.
3fda8c4c
ML
376
377Documentation
378--------------
ad0f8c9e 379Documentation by Martyn Smith <martyn@catalyst.net.nz>, Martin Langhoff <martin@catalyst.net.nz>, and Matthias Urlichs <smurf@smurf.noris.de>.
3fda8c4c
ML
380
381GIT
382---
9e1f0a85 383Part of the linkgit:git[1] suite