I have accidentally run hg strip, and deleted a stack of commits. I have not done anything in the repo since. Is there a way for me to bring back this stack of commits, to u
Here is a worked example of unbundle
from an external post. I've cleaned it up slightly to make it a little more general:
Recovering stripped files when using Mercurial
If you accidentally strip a patch and do not have a backup for it, you can still recover your files using Mercurial. To recover your files:
Open a Microsoft Windows Command Prompt window.
Navigate to the project folder where you stripped the files.
Run the
dir
commandNavigate to the
.hg
folder where Mercurial stores all relevant project files.Run the
dir
command again.Navigate to the strip-backup folder where Mercurial stores the backup bundles of stripped patches.
Run the
dir
command again. Multiple files display in the directory that use theformat. They are the backup bundles of stripped patches.
-hg Use Windows Explorer to find the required file. Open the
strip-backup
folder in Windows Explorer, and sort by Date modified descending. Unless the necessary backup bundle is already known, [it is recommended to] restore the bundles in reverse chronological order starting from the most recent bundle.Navigate back to the project folder.
To restore a bundle, run
hg unbundle .hg\strip-backup\
. ... You may want to add it to thePATH
environment variable to make it accessible globally.Synchronize the project [using
hg pull
] to see the restored patch. If the restored patch is not the one needed, then continue restoring the patches in reverse chronological order until the required patch is retrieved.Note: You may restore the backup bundles in any order, instead of using reverse chronological order. However, it may not be safe to do so. You may end up attempting to restore a backup bundle, which has a dependency on another backup bundle that has not been restored. In this case, you will get an error.