Show More
@@ -34,7 +34,7 b' Note that there are some limitations on ' | |||||
34 |
|
34 | |||
35 | - You should use single encoding in one repository. |
|
35 | - You should use single encoding in one repository. | |
36 | - If the repository path ends with 0x5c, .hg/hgrc cannot be read. |
|
36 | - If the repository path ends with 0x5c, .hg/hgrc cannot be read. | |
37 |
- win32mbcs is not compatible with fixutf8 exten |
|
37 | - win32mbcs is not compatible with fixutf8 extension. | |
38 |
|
38 | |||
39 | By default, win32mbcs uses encoding.encoding decided by Mercurial. |
|
39 | By default, win32mbcs uses encoding.encoding decided by Mercurial. | |
40 | You can specify the encoding by config option:: |
|
40 | You can specify the encoding by config option:: |
@@ -601,7 +601,7 b' class svnsubrepo(abstractsubrepo):' | |||||
601 |
|
601 | |||
602 | def get(self, state, overwrite=False): |
|
602 | def get(self, state, overwrite=False): | |
603 | if overwrite: |
|
603 | if overwrite: | |
604 |
self._svncommand(['revert', '--recursive' |
|
604 | self._svncommand(['revert', '--recursive']) | |
605 | status = self._svncommand(['checkout', state[0], '--revision', state[1]]) |
|
605 | status = self._svncommand(['checkout', state[0], '--revision', state[1]]) | |
606 | if not re.search('Checked out revision [0-9]+.', status): |
|
606 | if not re.search('Checked out revision [0-9]+.', status): | |
607 | raise util.Abort(status.splitlines()[-1]) |
|
607 | raise util.Abort(status.splitlines()[-1]) |
@@ -280,15 +280,15 b' Check hg update --clean' | |||||
280 | A f1 |
|
280 | A f1 | |
281 |
|
281 | |||
282 | Performing status on external item at 'externals' |
|
282 | Performing status on external item at 'externals' | |
283 | $ cd .. |
|
283 | $ cd ../.. | |
284 | $ hg update -C |
|
284 | $ hg -R t update -C | |
285 |
|
285 | |||
286 |
Fetching external item into ' |
|
286 | Fetching external item into 't/s/externals' | |
287 | Checked out external at revision 1. |
|
287 | Checked out external at revision 1. | |
288 |
|
288 | |||
289 | Checked out revision 3. |
|
289 | Checked out revision 3. | |
290 | 1 files updated, 0 files merged, 0 files removed, 0 files unresolved |
|
290 | 1 files updated, 0 files merged, 0 files removed, 0 files unresolved | |
291 | $ cd s |
|
291 | $ cd t/s | |
292 | $ svn status |
|
292 | $ svn status | |
293 | ? a |
|
293 | ? a | |
294 | X externals |
|
294 | X externals |
General Comments 0
You need to be logged in to leave comments.
Login now