comparison hgext/convert/__init__.py @ 8668:aea3a23151bd

fixed typos found in translatable strings This is from a spell-check of hg.pot.
author Martin Geisler <mg@lazybytes.net>
date Sun, 31 May 2009 14:55:51 +0200
parents 5edb2a8e29ea
children c5b4f662109f
comparison
equal deleted inserted replaced
8667:594507755800 8668:aea3a23151bd
67 67
68 rename from/file to/file 68 rename from/file to/file
69 69
70 The 'include' directive causes a file, or all files under a 70 The 'include' directive causes a file, or all files under a
71 directory, to be included in the destination repository, and the 71 directory, to be included in the destination repository, and the
72 exclusion of all other files and directories not explicitely included. 72 exclusion of all other files and directories not explicitly included.
73 The 'exclude' directive causes files or directories to be omitted. 73 The 'exclude' directive causes files or directories to be omitted.
74 The 'rename' directive renames a file or directory. To rename from 74 The 'rename' directive renames a file or directory. To rename from
75 a subdirectory into the root of the repository, use '.' as the 75 a subdirectory into the root of the repository, use '.' as the
76 path to rename to. 76 path to rename to.
77 77
118 access to the repository files is not needed, unless of course the 118 access to the repository files is not needed, unless of course the
119 repository is :local:. The conversion uses the top level directory 119 repository is :local:. The conversion uses the top level directory
120 in the sandbox to find the CVS repository, and then uses CVS rlog 120 in the sandbox to find the CVS repository, and then uses CVS rlog
121 commands to find files to convert. This means that unless a 121 commands to find files to convert. This means that unless a
122 filemap is given, all files under the starting directory will be 122 filemap is given, all files under the starting directory will be
123 converted, and that any directory reorganisation in the CVS 123 converted, and that any directory reorganization in the CVS
124 sandbox is ignored. 124 sandbox is ignored.
125 125
126 Because CVS does not have changesets, it is necessary to collect 126 Because CVS does not have changesets, it is necessary to collect
127 individual commits to CVS and merge them into changesets. CVS 127 individual commits to CVS and merge them into changesets. CVS
128 source uses its internal changeset merging code by default but can 128 source uses its internal changeset merging code by default but can
169 converted as a single branch. If "svn://repo/path/trunk" exists it 169 converted as a single branch. If "svn://repo/path/trunk" exists it
170 replaces the default branch. If "svn://repo/path/branches" exists, 170 replaces the default branch. If "svn://repo/path/branches" exists,
171 its subdirectories are listed as possible branches. If 171 its subdirectories are listed as possible branches. If
172 "svn://repo/path/tags" exists, it is looked for tags referencing 172 "svn://repo/path/tags" exists, it is looked for tags referencing
173 converted branches. Default "trunk", "branches" and "tags" values 173 converted branches. Default "trunk", "branches" and "tags" values
174 can be overriden with following options. Set them to paths 174 can be overridden with following options. Set them to paths
175 relative to the source URL, or leave them blank to disable 175 relative to the source URL, or leave them blank to disable auto
176 autodetection. 176 detection.
177 177
178 --config convert.svn.branches=branches (directory name) 178 --config convert.svn.branches=branches (directory name)
179 specify the directory containing branches 179 specify the directory containing branches
180 --config convert.svn.tags=tags (directory name) 180 --config convert.svn.tags=tags (directory name)
181 specify the directory containing tags 181 specify the directory containing tags