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