]> git.ipfire.org Git - thirdparty/git.git/blame - Documentation/gitcvs-migration.txt
Update Swedish translation (724t0f0u).
[thirdparty/git.git] / Documentation / gitcvs-migration.txt
CommitLineData
b27a23e3
CC
1gitcvs-migration(7)
2===================
3
4NAME
5----
6gitcvs-migration - git for CVS users
7
8SYNOPSIS
9--------
7791a1d9
MZ
10[verse]
11'git cvsimport' *
b27a23e3
CC
12
13DESCRIPTION
14-----------
fcbfd5a6 15
cd976f5c
BF
16Git differs from CVS in that every working tree contains a repository with
17a full copy of the project history, and no repository is inherently more
18important than any other. However, you can emulate the CVS model by
19designating a single shared repository which people can synchronize with;
20this document explains how to do that.
fcbfd5a6 21
6998e4db
JN
22Some basic familiarity with git is required. Having gone through
23linkgit:gittutorial[7] and
24linkgit:gitglossary[7] should be sufficient.
fcbfd5a6 25
cd976f5c
BF
26Developing against a shared repository
27--------------------------------------
fcbfd5a6 28
cd976f5c 29Suppose a shared repository is set up in /pub/repo.git on the host
37425065 30foo.com. Then as an individual committer you can clone the shared
cd976f5c 31repository over ssh with:
b8bc67ce
BF
32
33------------------------------------------------
34$ git clone foo.com:/pub/repo.git/ my-project
35$ cd my-project
36------------------------------------------------
37
2fd02c92 38and hack away. The equivalent of 'cvs update' is
b8bc67ce
BF
39
40------------------------------------------------
41$ git pull origin
42------------------------------------------------
43
44which merges in any work that others might have done since the clone
cd976f5c
BF
45operation. If there are uncommitted changes in your working tree, commit
46them first before running git pull.
b8bc67ce
BF
47
48[NOTE]
49================================
5833d730 50The 'pull' command knows where to get updates from because of certain
0b444cdb 51configuration variables that were set by the first 'git clone'
5162e697 52command; see `git config -l` and the linkgit:git-config[1] man
c04197ee 53page for details.
b8bc67ce
BF
54================================
55
4cfeccc7 56You can update the shared repository with your changes by first committing
0b444cdb 57your changes, and then using the 'git push' command:
fcbfd5a6 58
b8bc67ce
BF
59------------------------------------------------
60$ git push origin master
61------------------------------------------------
fcbfd5a6 62
4003a58e 63to "push" those commits to the shared repository. If someone else has
0b444cdb 64updated the repository more recently, 'git push', like 'cvs commit', will
4003a58e
BF
65complain, in which case you must pull any changes before attempting the
66push again.
7da71deb 67
0b444cdb
TR
68In the 'git push' command above we specify the name of the remote branch
69to update (`master`). If we leave that out, 'git push' tries to update
b8bc67ce 70any branches in the remote repository that have the same name as a branch
5833d730 71in the local repository. So the last 'push' can be done with either of:
7da71deb 72
b8bc67ce
BF
73------------
74$ git push origin
cd976f5c 75$ git push foo.com:/pub/project.git/
b8bc67ce 76------------
7da71deb 77
b8bc67ce
BF
78as long as the shared repository does not have any branches
79other than `master`.
80
cd976f5c
BF
81Setting Up a Shared Repository
82------------------------------
83
84We assume you have already created a git repository for your project,
6998e4db
JN
85possibly created from scratch or from a tarball (see
86linkgit:gittutorial[7]), or imported from an already existing CVS
cd976f5c
BF
87repository (see the next section).
88
4cfeccc7
BF
89Assume your existing repo is at /home/alice/myproject. Create a new "bare"
90repository (a repository without a working tree) and fetch your project into
91it:
cd976f5c
BF
92
93------------------------------------------------
4cfeccc7
BF
94$ mkdir /pub/my-repo.git
95$ cd /pub/my-repo.git
5c94f87e 96$ git --bare init --shared
4cfeccc7 97$ git --bare fetch /home/alice/myproject master:master
cd976f5c
BF
98------------------------------------------------
99
100Next, give every team member read/write access to this repository. One
101easy way to do this is to give all the team members ssh access to the
102machine where the repository is hosted. If you don't want to give them a
103full shell on the machine, there is a restricted shell which only allows
5162e697 104users to do git pushes and pulls; see linkgit:git-shell[1].
cd976f5c
BF
105
106Put all the committers in the same group, and make the repository
107writable by that group:
108
109------------------------------------------------
4cfeccc7 110$ chgrp -R $group /pub/my-repo.git
cd976f5c
BF
111------------------------------------------------
112
113Make sure committers have a umask of at most 027, so that the directories
114they create are writable and searchable by other group members.
115
116Importing a CVS archive
117-----------------------
118
119First, install version 2.1 or higher of cvsps from
120link:http://www.cobite.com/cvsps/[http://www.cobite.com/cvsps/] and make
4cfeccc7 121sure it is in your path. Then cd to a checked out CVS working directory
3ac3cfb8 122of the project you are interested in and run linkgit:git-cvsimport[1]:
cd976f5c
BF
123
124-------------------------------------------
0bc25a78 125$ git cvsimport -C <destination> <module>
cd976f5c
BF
126-------------------------------------------
127
128This puts a git archive of the named CVS module in the directory
4cfeccc7 129<destination>, which will be created if necessary.
cd976f5c
BF
130
131The import checks out from CVS every revision of every file. Reportedly
132cvsimport can average some twenty revisions per second, so for a
133medium-sized project this should not take more than a couple of minutes.
134Larger projects or remote repositories may take longer.
135
136The main trunk is stored in the git branch named `origin`, and additional
137CVS branches are stored in git branches with the same names. The most
138recent version of the main trunk is also left checked out on the `master`
139branch, so you can start adding your own changes right away.
140
141The import is incremental, so if you call it again next month it will
142fetch any CVS updates that have been made in the meantime. For this to
143work, you must not modify the imported branches; instead, create new
144branches for your own changes, and merge in the imported branches as
145necessary.
b8bc67ce 146
a41a32bf
MO
147If you want a shared repository, you will need to make a bare clone
148of the imported directory, as described above. Then treat the imported
149directory as another development clone for purposes of merging
150incremental imports.
151
b8bc67ce
BF
152Advanced Shared Repository Management
153-------------------------------------
154
155Git allows you to specify scripts called "hooks" to be run at certain
156points. You can use these, for example, to send all commits to the shared
6998e4db 157repository to a mailing list. See linkgit:githooks[5].
b8bc67ce
BF
158
159You can enforce finer grained permissions using update hooks. See
160link:howto/update-hook-example.txt[Controlling access to branches using
161update hooks].
fcbfd5a6 162
cd976f5c
BF
163Providing CVS Access to a git Repository
164----------------------------------------
165
166It is also possible to provide true CVS access to a git repository, so
5162e697 167that developers can still use CVS; see linkgit:git-cvsserver[1] for
cd976f5c
BF
168details.
169
170Alternative Development Models
171------------------------------
172
173CVS users are accustomed to giving a group of developers commit access to
174a common repository. As we've seen, this is also possible with git.
175However, the distributed nature of git allows other development models,
176and you may want to first consider whether one of them might be a better
177fit for your project.
178
179For example, you can choose a single person to maintain the project's
180primary public repository. Other developers then clone this repository
181and each work in their own clone. When they have a series of changes that
182they're happy with, they ask the maintainer to pull from the branch
183containing the changes. The maintainer reviews their changes and pulls
184them into the primary repository, which other developers pull from as
185necessary to stay coordinated. The Linux kernel and other projects use
186variants of this model.
b0bf8f24 187
cd976f5c
BF
188With a small group, developers may just pull changes from each other's
189repositories without the need for a central maintainer.
b27a23e3
CC
190
191SEE ALSO
192--------
497c8331
CC
193linkgit:gittutorial[7],
194linkgit:gittutorial-2[7],
195linkgit:gitcore-tutorial[7],
196linkgit:gitglossary[7],
b27a23e3
CC
197link:everyday.html[Everyday Git],
198link:user-manual.html[The Git User's Manual]
199
200GIT
201---
9e1f0a85 202Part of the linkgit:git[1] suite.