I'm using Mercurial and ran into an issue I'm not sure how to resolve. The issue I'm facing at the moment is as follows:
If I'm invoking 'hg merge
', the following output is produced:
"Abort: outstanding uncommitted changes, ..."
If I then invoke 'hg status
', all the files which were in the initial version of Project A are listed - which now are not locally available anymore because the paths have changed from A/.../...
to B/.../...
Can anybody give me a hint or tip on how to resolve this issue?
Are the listed files listed as "deleted" (R I think)?
If yes, just commit this change (about the deleted files), then merge. Mercurial have to know about all the changes, including the files moved or removed.