I have a hg repository with svn subrepo.
I've successfully cloned it to some machine and pulled newest revisions. Then I'm trying to update working dir to revision:
bwh1te@dev-machine:~/work/project_name$ hg pull
http authorization required
realm: HG Repository
user: bwh1te
password:
pulling from https://hg.some-company.com/project_name
searching for changes
no changes found
bwh1te@dev-machine:~/work/project_name$ hg update -C RELEASE-2_50
abort: Получена ревизия 28463.
('Получена ревизия' means 'Checked out revision' in Russian) Abort because of what? Revision was successfully checked out! So I can't update because of some unknown causes.
I've also trying to checkout svn repo separately and it works:
bwh1te@dev-machine:~/somestuff/subrepo$ svn co svn+ssh://svn.some-company.com/.../trunk
A trunk/dev
A trunk/dev/main.cfg.xml
...
U trunk
Checked out revision 28549.
So:
- Its possible to checkout svn subrepo separately
- Its possible for me to
hg update
this repo on another machines - Its possible for another users to
hg update
this repo on the same machine - Svn checkout and checkout as subrepo (while
hg update
) returns different changesets!
Where can I search the root of the problem?