##// END OF EJS Templates
cleanup: typos
Patrick Mezard -
r11685:aade8f13 default
parent child Browse files
Show More
@@ -86,7 +86,7 def convert(ui, src, dest=None, revmapfi
86 86
87 87 rename path/to/source path/to/destination
88 88
89 Comment lines start with '#'. A specificed path matches if it
89 Comment lines start with '#'. A specified path matches if it
90 90 equals the full relative name of a file or one of its parent
91 91 directories. The 'include' or 'exclude' directive with the longest
92 92 matching path applies, so line order does not matter.
@@ -96,8 +96,8 def convert(ui, src, dest=None, revmapfi
96 96 exclusion of all other files and directories not explicitly
97 97 included. The 'exclude' directive causes files or directories to
98 98 be omitted. The 'rename' directive renames a file or directory if
99 is converted. To rename from a subdirectory into the root of the
100 repository, use '.' as the path to rename to.
99 it is converted. To rename from a subdirectory into the root of
100 the repository, use '.' as the path to rename to.
101 101
102 102 The splicemap is a file that allows insertion of synthetic
103 103 history, letting you specify the parents of a revision. This is
@@ -115,7 +115,7 class transaction(object):
115 115 def release(self):
116 116 if self.count > 0:
117 117 self.usages -= 1
118 # of the transaction scopes are left without being closed, fail
118 # if the transaction scopes are left without being closed, fail
119 119 if self.count > 0 and self.usages == 0:
120 120 self._abort()
121 121
@@ -65,7 +65,7 convert a foreign SCM repository to a Me
65 65
66 66 rename path/to/source path/to/destination
67 67
68 Comment lines start with '#'. A specificed path matches if it equals the
68 Comment lines start with '#'. A specified path matches if it equals the
69 69 full relative name of a file or one of its parent directories. The
70 70 'include' or 'exclude' directive with the longest matching path applies,
71 71 so line order does not matter.
@@ -74,7 +74,7 convert a foreign SCM repository to a Me
74 74 be included in the destination repository, and the exclusion of all other
75 75 files and directories not explicitly included. The 'exclude' directive
76 76 causes files or directories to be omitted. The 'rename' directive renames
77 a file or directory if is converted. To rename from a subdirectory into
77 a file or directory if it is converted. To rename from a subdirectory into
78 78 the root of the repository, use '.' as the path to rename to.
79 79
80 80 The splicemap is a file that allows insertion of synthetic history,
General Comments 0
You need to be logged in to leave comments. Login now