Differences between revisions 1 and 2
Revision 1 as of 2012-01-09 20:05:09
Size: 1495
Editor: mpm
Comment:
Revision 2 as of 2012-01-09 20:05:57
Size: 1500
Editor: mpm
Comment:
Deletions are marked like this. Additions are marked like this.
Line 51: Line 51:
}}}

Manual Checkout

Emulating a checkout to repair various issues

1. Why would I want to manually checkout a revision?

Sometimes it may be necessary to bypass Mercurial's consistency checks to fix certain problems:

  • fixing case collisions on Windows
  • changing non-portable file names (ie 'con' or 'aux' on Windows)
  • subrepository revisions that are no longer available
  • recovering data from damaged repositories

2. Performing a manual checkout

If you are cloning a repository, first start by using the -U flag to avoid the initial checkout:

$ hg clone -U http://myproject/

Next, use the revert command to retrieve all the files from a given revision. Use one or more -X options to exclude problem files.

$ hg revert -a -r <some rev> -X badfile -X baddir

Next, manually set the parent of the working copy:

$ hg debugrebuildstate -r <rev>

Now Mercurial should be in a state where the target revisions is checked out except the problem files. Double-check against summary and status:

$ hg summary
parent: 15782:cde35835b333 
 blah blah blah
branch: default
commit: 7 missing (clean)
update: (current)
$ hg status
! badfile
! baddir/a
! baddir/A

Now you can manually repair or recreate those files, possibly with hg revert -r <goodrev> badfile. When your working directory is in a consistent state, you can commit.


CategoryAudit

ManualCheckout (last edited 2019-03-28 18:39:02 by JordiGH)