Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Remove file from a commit in Mercurial

Tags:

mercurial

I have a commit onto which I have amended some files. Some of these files that were part of the amend I do not want in this commit. Is there a way in Mercurial to remove certain files from the commit without losing the changes I have made to them? Thank you.

Steps:

  1. Made some changes
  2. hg commit -m
  3. Made some more changes (some of these file accidentally amended)
  4. hg amend
like image 563
Dragster Avatar asked Sep 13 '13 01:09

Dragster


People also ask

How do I Untrack a file in Mercurial?

If you see the help for hg rm --help : hg remove [OPTION]... FILE... Schedule the indicated files for removal from the current branch. This command schedules the files to be removed at the next commit.

How do I undo a commit in Mercurial?

You can manually trigger a rollback with 'hg rollback'. This will undo the last transactional command. If a pull command brought 10 new changesets into the repository on different branches, then ' hg rollback ' will remove them all. Please note: there is no backup when you rollback a transaction!


1 Answers

Try out:

hg forget somefile.txt hg commit --amend 

If the file was new (i.e. you had used hg add).

If that file already existed try:

cp somefile.txt somefile.txt.bak hg revert somefile.txt --rev .~1 hg commit --amend 

Which is basically telling mercurial to revert the file (somefile.txt) back to the state it was one revision ago (--rev .~1).

Just make sure to back up the file you are reverting before entering the command so that you do not lose your changes. I was under the impression mercurial does this automatically for you, but after testing it quickly I'm not so sure.

like image 180
Michael Aquilina Avatar answered Oct 02 '22 18:10

Michael Aquilina