How can I change the time I've made a commit in my local repository?
Suppose I've done several commits and noticed that the date on my computer is wrong. These commits were not pushed anywhere yet, so I want to fix the time.
|
How can I change the time I've made a commit in my local repository? Suppose I've done several commits and noticed that the date on my computer is wrong. These commits were not pushed anywhere yet, so I want to fix the time.
| |||
|
feedback
|
|
There's Let's assume you get the following history of local commits:
Here's my solution:
You can automate application of patches with | |||||||
feedback
|
|
You can do it easily with MQ (Mercurial Queues): Set up a bad date repo
Turn the changesets into patches in the queue
Make each patch the qtip in turn and fix the date
Reapply the patches
Turn each patch back into real changesets
All better:
| |||||||
feedback
|