Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

During merges mercurial leaves .orig file for any unresolved file. But after manually resolving problems and marking a file correct it does not delete the .orig file. Can it be automatically removed by some command?

I work on a Mac so I can use something like:

find . -iname '*.orig' -exec rm '{}' ';'

and alias it or something, but I'd rather use something like hg cleanup...

UPDATE:

Since some time now, Purge extension is bundled with Mercurial and solves this problem nicely.

share|improve this question
I would have preferred an answer along the lines of "open ~/.hgrc, go to e.g. the "extensions" section and add the "no-orig" plug-in...wishful thinking? – Tomislav Nakic-Alfirevic Jun 29 '12 at 7:12

7 Answers

up vote 28 down vote accepted

Personally, I use

$ rm **/*.orig

if I get tired of the .orig files. This works in Zsh, my favorite shell. But if you use another shell or want a built-in solution, then maybe you'll like the purge extension.

That lets you remove all untracked files with

$ hg purge

and you can remove all untracked and ignored files with

$ hg purge --all

An advantage of using hg purge is that this will also cleanup directories that become empty after removing the files. The rm command line will just leave the empty directories behind.

share|improve this answer
rm is quite short :). But the purge removes all untracked files - and some file I use are not tracked on purpose - private project configuration, database configuration, etc... – rkj Jul 1 '09 at 9:06
ok, purge does not touch ignored files :) thx a lot :) – rkj Jul 1 '09 at 9:42
2  
Why am I getting downvotes for this? Is it because this only works in shells like Zsh that understand **? I said personally since this is what I use myself, and then I gave a general, cross-platform answer in the form of the purge extension. – Martin Geisler Jan 19 '12 at 20:19
@Martin It doesn't recurse into sub-directories is my guess. – Keyo Apr 12 '12 at 22:44
@Keyo: the rm command line does recurse, that's the purpose of the ** part. It wont remove directories that become empty after removing the .orig files. That's a slight advantage of using hg purge. It's rare that directories come and go in my projects, so I hadn't thought of this before. – Martin Geisler Apr 13 '12 at 6:36

btw. find utility has an action -delete so you can type only:

find <path-to-files> -name '*.orig' -delete

share|improve this answer

The following will remove .orig files in your entire working copy hierarchy and also works for paths containing spaces:

find . -name *.orig | while read -d $'\n' file; do rm -v "$file"; done;

I use an alias in my .bash_profile:

alias clearorig='echo "Removing .orig files..."; find . -name *.orig | \
while read -d $'\''\n'\'' file; do rm -v "$file"; done;'
share|improve this answer

you should use the update hook

update: This is run after an update or merge of the working directory has finished

share|improve this answer
1  
can you be more more specific? Are you proposing removing all files on commit hook? :) – rkj Jul 1 '09 at 9:09
1  
you can execute find . -iname '.orig' -exec rm '{}' ';' *after a merge, see the doc for details – dfa Jul 1 '09 at 9:38

If you just want to delete the .orig files, and you happen to be on a Windows computer, the following seems to work well:

D:\workspace>hg purge -I **/*.orig --all

This will delete all untracked files that end in .orig, but won't delete other untracked files, as the other answers would.

You can test this before running it by putting the --print flag in as well.

share|improve this answer

I have posted this answer before. But this is the correct place to this answer.

I made this batch file myself.

IF "%1%" == "d" (
    del /s *.orig
    del /s *.rej
 ) ELSE ( 
    del /s /p *.rej
    del /s /p *.orig
 )

Help: Save this content as orig.bat

  1. Run orig d to delete all rejects and orig files at once without confirmation
  2. Run orig to delete files with confirmation [Safety mechanism]

Hope this is helpful.

share|improve this answer

I don't like the chosen answer. It doesn't removed everything within all levels of the project. I use this:

for f in `find . | grep .orig$`; do rm $f; done

Works on both Mac and *nix

share|improve this answer
This is not a good answer: file names with spaces will break the rm invocation. Please let me know if you fix the answer so that I can remove the down vote. – Martin Geisler Jan 22 '12 at 21:13

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.