2008-05-24 20:56:44 +02:00
|
|
|
gitcvs-migration(7)
|
|
|
|
===================
|
|
|
|
|
|
|
|
NAME
|
|
|
|
----
|
2013-01-21 20:17:53 +01:00
|
|
|
gitcvs-migration - Git for CVS users
|
2008-05-24 20:56:44 +02:00
|
|
|
|
|
|
|
SYNOPSIS
|
|
|
|
--------
|
2011-07-02 04:38:26 +02:00
|
|
|
[verse]
|
|
|
|
'git cvsimport' *
|
2008-05-24 20:56:44 +02:00
|
|
|
|
|
|
|
DESCRIPTION
|
|
|
|
-----------
|
2005-06-08 00:52:06 +02:00
|
|
|
|
2006-12-07 05:18:05 +01:00
|
|
|
Git differs from CVS in that every working tree contains a repository with
|
|
|
|
a full copy of the project history, and no repository is inherently more
|
|
|
|
important than any other. However, you can emulate the CVS model by
|
|
|
|
designating a single shared repository which people can synchronize with;
|
|
|
|
this document explains how to do that.
|
2005-06-08 00:52:06 +02:00
|
|
|
|
2013-01-21 20:17:53 +01:00
|
|
|
Some basic familiarity with Git is required. Having gone through
|
2008-07-01 00:01:21 +02:00
|
|
|
linkgit:gittutorial[7] and
|
|
|
|
linkgit:gitglossary[7] should be sufficient.
|
2005-06-08 00:52:06 +02:00
|
|
|
|
2006-12-07 05:18:05 +01:00
|
|
|
Developing against a shared repository
|
|
|
|
--------------------------------------
|
2005-06-08 00:52:06 +02:00
|
|
|
|
2006-12-07 05:18:05 +01:00
|
|
|
Suppose a shared repository is set up in /pub/repo.git on the host
|
2006-06-07 14:56:45 +02:00
|
|
|
foo.com. Then as an individual committer you can clone the shared
|
2006-12-07 05:18:05 +01:00
|
|
|
repository over ssh with:
|
2006-01-29 05:31:47 +01:00
|
|
|
|
|
|
|
------------------------------------------------
|
|
|
|
$ git clone foo.com:/pub/repo.git/ my-project
|
|
|
|
$ cd my-project
|
|
|
|
------------------------------------------------
|
|
|
|
|
2008-07-03 07:55:07 +02:00
|
|
|
and hack away. The equivalent of 'cvs update' is
|
2006-01-29 05:31:47 +01:00
|
|
|
|
|
|
|
------------------------------------------------
|
|
|
|
$ git pull origin
|
|
|
|
------------------------------------------------
|
|
|
|
|
|
|
|
which merges in any work that others might have done since the clone
|
2006-12-07 05:18:05 +01:00
|
|
|
operation. If there are uncommitted changes in your working tree, commit
|
|
|
|
them first before running git pull.
|
2006-01-29 05:31:47 +01:00
|
|
|
|
|
|
|
[NOTE]
|
|
|
|
================================
|
2008-07-03 07:59:09 +02:00
|
|
|
The 'pull' command knows where to get updates from because of certain
|
2010-01-10 00:33:00 +01:00
|
|
|
configuration variables that were set by the first 'git clone'
|
2007-12-29 07:20:38 +01:00
|
|
|
command; see `git config -l` and the linkgit:git-config[1] man
|
2007-01-01 00:47:33 +01:00
|
|
|
page for details.
|
2006-01-29 05:31:47 +01:00
|
|
|
================================
|
|
|
|
|
2006-12-09 04:58:50 +01:00
|
|
|
You can update the shared repository with your changes by first committing
|
2010-01-10 00:33:00 +01:00
|
|
|
your changes, and then using the 'git push' command:
|
2005-06-08 00:52:06 +02:00
|
|
|
|
2006-01-29 05:31:47 +01:00
|
|
|
------------------------------------------------
|
|
|
|
$ git push origin master
|
|
|
|
------------------------------------------------
|
2005-06-08 00:52:06 +02:00
|
|
|
|
2006-12-06 18:19:50 +01:00
|
|
|
to "push" those commits to the shared repository. If someone else has
|
2010-01-10 00:33:00 +01:00
|
|
|
updated the repository more recently, 'git push', like 'cvs commit', will
|
2006-12-06 18:19:50 +01:00
|
|
|
complain, in which case you must pull any changes before attempting the
|
|
|
|
push again.
|
2005-08-01 16:32:58 +02:00
|
|
|
|
2010-01-10 00:33:00 +01:00
|
|
|
In the 'git push' command above we specify the name of the remote branch
|
|
|
|
to update (`master`). If we leave that out, 'git push' tries to update
|
2006-01-29 05:31:47 +01:00
|
|
|
any branches in the remote repository that have the same name as a branch
|
2008-07-03 07:59:09 +02:00
|
|
|
in the local repository. So the last 'push' can be done with either of:
|
2005-08-01 16:32:58 +02:00
|
|
|
|
2006-01-29 05:31:47 +01:00
|
|
|
------------
|
|
|
|
$ git push origin
|
2006-12-07 05:18:05 +01:00
|
|
|
$ git push foo.com:/pub/project.git/
|
2006-01-29 05:31:47 +01:00
|
|
|
------------
|
2005-08-01 16:32:58 +02:00
|
|
|
|
2006-01-29 05:31:47 +01:00
|
|
|
as long as the shared repository does not have any branches
|
|
|
|
other than `master`.
|
|
|
|
|
2006-12-07 05:18:05 +01:00
|
|
|
Setting Up a Shared Repository
|
|
|
|
------------------------------
|
|
|
|
|
2013-01-21 20:17:53 +01:00
|
|
|
We assume you have already created a Git repository for your project,
|
2008-07-01 00:01:21 +02:00
|
|
|
possibly created from scratch or from a tarball (see
|
|
|
|
linkgit:gittutorial[7]), or imported from an already existing CVS
|
2006-12-07 05:18:05 +01:00
|
|
|
repository (see the next section).
|
|
|
|
|
2006-12-09 04:58:50 +01:00
|
|
|
Assume your existing repo is at /home/alice/myproject. Create a new "bare"
|
|
|
|
repository (a repository without a working tree) and fetch your project into
|
|
|
|
it:
|
2006-12-07 05:18:05 +01:00
|
|
|
|
|
|
|
------------------------------------------------
|
2006-12-09 04:58:50 +01:00
|
|
|
$ mkdir /pub/my-repo.git
|
|
|
|
$ cd /pub/my-repo.git
|
2007-01-12 22:01:46 +01:00
|
|
|
$ git --bare init --shared
|
2006-12-09 04:58:50 +01:00
|
|
|
$ git --bare fetch /home/alice/myproject master:master
|
2006-12-07 05:18:05 +01:00
|
|
|
------------------------------------------------
|
|
|
|
|
|
|
|
Next, give every team member read/write access to this repository. One
|
|
|
|
easy way to do this is to give all the team members ssh access to the
|
|
|
|
machine where the repository is hosted. If you don't want to give them a
|
|
|
|
full shell on the machine, there is a restricted shell which only allows
|
2013-01-21 20:17:53 +01:00
|
|
|
users to do Git pushes and pulls; see linkgit:git-shell[1].
|
2006-12-07 05:18:05 +01:00
|
|
|
|
|
|
|
Put all the committers in the same group, and make the repository
|
|
|
|
writable by that group:
|
|
|
|
|
|
|
|
------------------------------------------------
|
2006-12-09 04:58:50 +01:00
|
|
|
$ chgrp -R $group /pub/my-repo.git
|
2006-12-07 05:18:05 +01:00
|
|
|
------------------------------------------------
|
|
|
|
|
|
|
|
Make sure committers have a umask of at most 027, so that the directories
|
|
|
|
they create are writable and searchable by other group members.
|
|
|
|
|
|
|
|
Importing a CVS archive
|
|
|
|
-----------------------
|
|
|
|
|
|
|
|
First, install version 2.1 or higher of cvsps from
|
Documentation: fix documentation AsciiDoc links for external urls
Turns out that putting 'link:' before the 'http' is actually superfluous
in AsciiDoc, as there's already a predefined macro to handle it.
"http, https, [etc] URLs are rendered using predefined inline macros."
http://www.methods.co.nz/asciidoc/userguide.html#_urls
"Hypertext links to files on the local file system are specified
using the link inline macro."
http://www.methods.co.nz/asciidoc/userguide.html#_linking_to_local_documents
Despite being superfluous, the reference implementation of AsciiDoc
tolerates the extra 'link:' and silently removes it, giving a functioning
link in the generated HTML. However, AsciiDoctor (the Ruby implementation
of AsciiDoc used to render the http://git-scm.com/ site) does /not/ have
this behaviour, and so generates broken links, as can be seen here:
http://git-scm.com/docs/git-cvsimport (links to cvs2git & parsecvs)
http://git-scm.com/docs/git-filter-branch (link to The BFG)
It's worth noting that after this change, the html generated by 'make html'
in the git project is identical, and all links still work.
Signed-off-by: Roberto Tyley <roberto.tyley@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2014-02-18 22:42:22 +01:00
|
|
|
http://www.cobite.com/cvsps/[http://www.cobite.com/cvsps/] and make
|
2006-12-09 04:58:50 +01:00
|
|
|
sure it is in your path. Then cd to a checked out CVS working directory
|
2009-04-18 16:38:42 +02:00
|
|
|
of the project you are interested in and run linkgit:git-cvsimport[1]:
|
2006-12-07 05:18:05 +01:00
|
|
|
|
|
|
|
-------------------------------------------
|
2007-02-06 08:51:26 +01:00
|
|
|
$ git cvsimport -C <destination> <module>
|
2006-12-07 05:18:05 +01:00
|
|
|
-------------------------------------------
|
|
|
|
|
2013-01-21 20:17:53 +01:00
|
|
|
This puts a Git archive of the named CVS module in the directory
|
2006-12-09 04:58:50 +01:00
|
|
|
<destination>, which will be created if necessary.
|
2006-12-07 05:18:05 +01:00
|
|
|
|
|
|
|
The import checks out from CVS every revision of every file. Reportedly
|
|
|
|
cvsimport can average some twenty revisions per second, so for a
|
|
|
|
medium-sized project this should not take more than a couple of minutes.
|
|
|
|
Larger projects or remote repositories may take longer.
|
|
|
|
|
2013-01-21 20:17:53 +01:00
|
|
|
The main trunk is stored in the Git branch named `origin`, and additional
|
|
|
|
CVS branches are stored in Git branches with the same names. The most
|
2006-12-07 05:18:05 +01:00
|
|
|
recent version of the main trunk is also left checked out on the `master`
|
|
|
|
branch, so you can start adding your own changes right away.
|
|
|
|
|
|
|
|
The import is incremental, so if you call it again next month it will
|
|
|
|
fetch any CVS updates that have been made in the meantime. For this to
|
|
|
|
work, you must not modify the imported branches; instead, create new
|
|
|
|
branches for your own changes, and merge in the imported branches as
|
|
|
|
necessary.
|
2006-01-29 05:31:47 +01:00
|
|
|
|
2008-07-05 06:43:41 +02:00
|
|
|
If you want a shared repository, you will need to make a bare clone
|
|
|
|
of the imported directory, as described above. Then treat the imported
|
|
|
|
directory as another development clone for purposes of merging
|
|
|
|
incremental imports.
|
|
|
|
|
2006-01-29 05:31:47 +01:00
|
|
|
Advanced Shared Repository Management
|
|
|
|
-------------------------------------
|
|
|
|
|
|
|
|
Git allows you to specify scripts called "hooks" to be run at certain
|
|
|
|
points. You can use these, for example, to send all commits to the shared
|
2008-07-01 00:01:21 +02:00
|
|
|
repository to a mailing list. See linkgit:githooks[5].
|
2006-01-29 05:31:47 +01:00
|
|
|
|
|
|
|
You can enforce finer grained permissions using update hooks. See
|
2013-09-06 22:03:22 +02:00
|
|
|
link:howto/update-hook-example.html[Controlling access to branches using
|
2006-01-29 05:31:47 +01:00
|
|
|
update hooks].
|
2005-06-08 00:52:06 +02:00
|
|
|
|
2013-01-21 20:17:53 +01:00
|
|
|
Providing CVS Access to a Git Repository
|
2006-12-07 05:18:05 +01:00
|
|
|
----------------------------------------
|
|
|
|
|
2013-01-21 20:17:53 +01:00
|
|
|
It is also possible to provide true CVS access to a Git repository, so
|
2007-12-29 07:20:38 +01:00
|
|
|
that developers can still use CVS; see linkgit:git-cvsserver[1] for
|
2006-12-07 05:18:05 +01:00
|
|
|
details.
|
|
|
|
|
|
|
|
Alternative Development Models
|
|
|
|
------------------------------
|
|
|
|
|
|
|
|
CVS users are accustomed to giving a group of developers commit access to
|
2013-01-21 20:17:53 +01:00
|
|
|
a common repository. As we've seen, this is also possible with Git.
|
|
|
|
However, the distributed nature of Git allows other development models,
|
2006-12-07 05:18:05 +01:00
|
|
|
and you may want to first consider whether one of them might be a better
|
|
|
|
fit for your project.
|
|
|
|
|
|
|
|
For example, you can choose a single person to maintain the project's
|
|
|
|
primary public repository. Other developers then clone this repository
|
|
|
|
and each work in their own clone. When they have a series of changes that
|
|
|
|
they're happy with, they ask the maintainer to pull from the branch
|
|
|
|
containing the changes. The maintainer reviews their changes and pulls
|
|
|
|
them into the primary repository, which other developers pull from as
|
|
|
|
necessary to stay coordinated. The Linux kernel and other projects use
|
|
|
|
variants of this model.
|
2005-06-06 02:46:06 +02:00
|
|
|
|
2006-12-07 05:18:05 +01:00
|
|
|
With a small group, developers may just pull changes from each other's
|
|
|
|
repositories without the need for a central maintainer.
|
2008-05-24 20:56:44 +02:00
|
|
|
|
|
|
|
SEE ALSO
|
|
|
|
--------
|
2008-05-29 19:21:46 +02:00
|
|
|
linkgit:gittutorial[7],
|
|
|
|
linkgit:gittutorial-2[7],
|
|
|
|
linkgit:gitcore-tutorial[7],
|
|
|
|
linkgit:gitglossary[7],
|
2014-10-10 23:25:37 +02:00
|
|
|
linkgit:giteveryday[7],
|
2008-05-24 20:56:44 +02:00
|
|
|
link:user-manual.html[The Git User's Manual]
|
|
|
|
|
|
|
|
GIT
|
|
|
|
---
|
2008-06-06 09:07:32 +02:00
|
|
|
Part of the linkgit:git[1] suite.
|