Differences between revisions 1 and 3 (spanning 2 versions)
Revision 1 as of 2008-06-24 21:06:22
Size: 863
Editor: mpm
Comment:
Revision 3 as of 2008-06-30 07:10:49
Size: 977
Editor: abuehl
Comment: +Reference
Deletions are marked like this. Additions are marked like this.
Line 24: Line 24:


~- Reference: http://selenic.com/pipermail/mercurial/2008-June/019921.html -~

----
CategoryTipsAndTricks

On Windows, it is currently possible to introduce case collisions in the repo that prevent you from checking out a repository.

One way to repair such a repository is to check it out on a case-sensitive Unix system, remove the problematic file, and commit it again.

If that's not possible, you can do the following:

  • hg clone -U repo repair
  • cd repair
  • hg debugsetparents <bad revision>

  • hg debugrebuildstate

At this point, Mercurial will think you have the bad revision checked out and all the files are missing (status '!'). To fix the repo, we simply have to do:

  • hg rm -A <file causing the collision>

Now hg st should show the troublesome file in state 'R' and all other files in state '!'. Now we can check in our fix:

  • hg ci -m"fix case collision"

To get all our files back, we just check out again:

  • hg co tip

Reference: http://selenic.com/pipermail/mercurial/2008-June/019921.html


CategoryTipsAndTricks

FixingCaseCollisions (last edited 2012-06-29 14:46:36 by 212)