##// END OF EJS Templates
convert: allow tags detection to be disabled...
Patrick Mezard -
r6400:c237b27e default
parent child Browse files
Show More
@@ -263,7 +263,7 class svn_source(converter_source):
263 263 rev = optrev(self.last_changed)
264 264 oldmodule = ''
265 265 trunk = getcfgpath('trunk', rev)
266 tags = getcfgpath('tags', rev)
266 self.tags = getcfgpath('tags', rev)
267 267 branches = getcfgpath('branches', rev)
268 268
269 269 # If the project has a trunk or branches, we will extract heads
@@ -278,7 +278,8 class svn_source(converter_source):
278 278
279 279 # First head in the list is the module's head
280 280 self.heads = [self.head]
281 self.tags = '%s/%s' % (oldmodule , (tags or 'tags'))
281 if self.tags is not None:
282 self.tags = '%s/%s' % (oldmodule , (self.tags or 'tags'))
282 283
283 284 # Check if branches bring a few more heads to the list
284 285 if branches:
@@ -69,3 +69,8 cd A-hg
69 69 hg glog --template '#rev# #desc|firstline# tags: #tags#\n'
70 70 hg tags -q
71 71 cd ..
72
73 echo % convert without tags
74 hg convert --datesort --config convert.svn.tags= $svnurl A-notags-hg
75 hg -R a-notags-hg tags -q
76
@@ -71,3 +71,14 o 0 init projA tags:
71 71 tip
72 72 trunk.v1
73 73 trunk.goodtag
74 % convert without tags
75 initializing destination A-notags-hg repository
76 scanning source...
77 sorting...
78 converting...
79 4 init projA
80 3 adda
81 2 changea
82 1 changea2
83 0 changea3
84 tip
General Comments 0
You need to be logged in to leave comments. Login now