Please enable JavaScript to use RhodeCode Enterprise
##// END OF EJS Templates
Thomas Arendsen Hein
- Fri, 24 Oct 2008 13:00:40
Show More
hgext/convert/__init__.py
0
+1
-1
@@
-85,7
+85,7
b' def convert(ui, src, dest=None, revmapfi'
85
Mercurial Source
85
Mercurial Source
86
-----------------
86
-----------------
87
87
88
--config convert.hg.ignoreerrors=False (boolean)
88
--config convert.hg.ignoreerrors=False (boolean)
89
ignore integrity errors when reading. Use it to fix Mercurial
89
ignore integrity errors when reading. Use it to fix Mercurial
90
repositories with missing revlogs, by converting from and to
90
repositories with missing revlogs, by converting from and to
91
Mercurial.
91
Mercurial.
hgext/convert/hg.py
0
+1
-1
@@
-267,7
+267,7
b' class mercurial_source(converter_source)'
267
# getcopies() detects missing revlogs early, run it before
267
# getcopies() detects missing revlogs early, run it before
268
# filtering the changes.
268
# filtering the changes.
269
copies = self . getcopies ( ctx , m + a )
269
copies = self . getcopies ( ctx , m + a )
270
changes = [( name , rev ) for name in m + a + r
270
changes = [( name , rev ) for name in m + a + r
271
if name not in self . ignored ]
271
if name not in self . ignored ]
272
return util . sort ( changes ), copies
272
return util . sort ( changes ), copies
273
273
mercurial/commands.py
0
+1
-1
@@
-1894,7
+1894,7
b' def log(ui, repo, *pats, **opts):'
1894
break
1894
break
1895
if miss :
1895
if miss :
1896
continue
1896
continue
1897
1897
1898
copies = []
1898
copies = []
1899
if opts . get ( 'copies' ) and rev :
1899
if opts . get ( 'copies' ) and rev :
1900
for fn in get ( rev )[ 3 ]:
1900
for fn in get ( rev )[ 3 ]:
mercurial/store.py
0
+1
-1
@@
-279,7
+279,7
b' class fncachestore(basicstore):'
279
fp . close ()
279
fp . close ()
280
280
281
def copylist ( self ):
281
def copylist ( self ):
282
d = _data + ' dh fncache'
282
d = _data + ' dh fncache'
283
return ([ 'requires' , '00changelog.i' ] +
283
return ([ 'requires' , '00changelog.i' ] +
284
[ self . pathjoiner ( 'store' , f ) for f in d . split ()])
284
[ self . pathjoiner ( 'store' , f ) for f in d . split ()])
285
285
tests/test-convert.out
0
+1
-1
@@
-72,7
+72,7
b' Convert a foreign SCM repository to a Me'
72
Mercurial Source
72
Mercurial Source
73
-----------------
73
-----------------
74
74
75
--config convert.hg.ignoreerrors=False (boolean)
75
--config convert.hg.ignoreerrors=False (boolean)
76
ignore integrity errors when reading. Use it to fix Mercurial
76
ignore integrity errors when reading. Use it to fix Mercurial
77
repositories with missing revlogs, by converting from and to
77
repositories with missing revlogs, by converting from and to
78
Mercurial.
78
Mercurial.
Site-wide shortcuts
/
Use quick search box
g h
Goto home page
g g
Goto my private gists page
g G
Goto my public gists page
g 0-9
Goto bookmarked items from 0-9
n r
New repository page
n g
New gist page
Repositories
g s
Goto summary page
g c
Goto changelog page
g f
Goto files page
g F
Goto files page with file search activated
g p
Goto pull requests page
g o
Goto repository settings
g O
Goto repository access permissions settings
t s
Toggle sidebar on some pages