Code

Documentation cvs: Clarify when a bare repository is needed
authorMatthew Ogilvie <mmogilvi_git@miniinfo.net>
Sat, 5 Jul 2008 04:43:41 +0000 (22:43 -0600)
committerJunio C Hamano <gitster@pobox.com>
Sun, 6 Jul 2008 00:42:16 +0000 (17:42 -0700)
New users sometimes import a project and then immediately
try to use the imported repository as a central shared repository.
This provides pointers about setting up a bare repository for that
in the parts of the documentation dealing with CVS migration.

Signed-off-by: Matthew Ogilvie <mmogilvi_git@miniinfo.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Documentation/git-cvsimport.txt
Documentation/git-cvsserver.txt
Documentation/gitcvs-migration.txt

index 2f9b35f6229143f566f31e1ef6de290572181608..93b7d2dc998f9e7c8bedf39f686b81c95deffa6c 100644 (file)
@@ -31,6 +31,12 @@ to work with; after that, you need to 'git merge' incremental imports, or
 any CVS branches, yourself.  It is advisable to specify a named remote via
 -r to separate and protect the incoming branches.
 
+If you intend to set up a shared public repository that all developers can
+read/write, or if you want to use linkgit:git-cvsserver[1], then you
+probably want to make a bare clone of the imported repository,
+and use the clone as the shared repository.
+See linkgit:gitcvs-migration[7].
+
 
 OPTIONS
 -------
index 3310ae25ff75c302e6b9088a0807aee340ad69c7..19da87e71d252e666335de7c97a5abcdd5fadbf8 100644 (file)
@@ -133,6 +133,9 @@ write access to the log file and to the database (see
 <<dbbackend,Database Backend>>. If you want to offer write access over
 SSH, the users of course also need write access to the git repository itself.
 
+You also need to ensure that each repository is "bare" (without a git index
+file) for `cvs commit` to work. See linkgit:gitcvs-migration[7].
+
 [[configaccessmethod]]
 All configuration variables can also be overridden for a specific method of
 access. Valid method names are "ext" (for SSH access) and "pserver". The
index 1db3f5294527e07576d44cb3a7bff384871fc24e..0325d6759d5ee329f284dac625ef4c40c31082c7 100644 (file)
@@ -143,6 +143,11 @@ work, you must not modify the imported branches; instead, create new
 branches for your own changes, and merge in the imported branches as
 necessary.
 
+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.
+
 Advanced Shared Repository Management
 -------------------------------------