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