tags:

views:

981

answers:

7

Hi,

I'm using mercurial. I made a clone of a repository. For debugging, I changed a few lines of code in a java file. I did not commit those changes though. I just want to revert them back to their original state, as found in the repository. I tried "hg revert filename.java", which did revert it, but now when I do hg status, I see additional files added in my folder now like:

? filename.java.orig

can I just delete those files, and why does mercurial make them when I use revert?

Thanks

+6  A: 

Yes, you can delete them. It's a safety feature in case you reverted something you didn't mean to revert.

Hank Gay
+3  A: 

These backup files can be created for merge and revert operations (cf. man page). You can add an ignore rule if you want, or simply delete them if you don't need them anymore.

AndiDog
+1  A: 

These are rather common, resulting from various operations. A glance at one of the moderate sized repositories I work on finds 237 of them. I don't like deleting things that may end up being useful, and I have no reason to name legitimate files with the same suffix, so I add the following to .hgignore instead:

.\.orig$
nullptr
+2  A: 

Those are copies of the files from before you reverted them. If you don't need those, you can delete them, either by hand or by:

hg clean
Peter Westlake
There is "clean" command in standard Mercurial -- perhaps you are thinking of the purge extension and `hg purge`?
Martin Geisler
@Martin: Typing `hg clean` says that `clean` is provided by the purge extension
Casebash
Casebash: ah, right -- the purge extension provides the command under both names: `hg purge` and `hg clean`.
Martin Geisler
+2  A: 

As other's have pointed out, you can safely delete these files.

You can remove them by executing this command from the root of your repo:

rm `hg st -un | grep orig`

If you want to revert, and don't care at all about backing up the original files, the command you want is:

hg update -C
Ted Naleid
+2  A: 

You can also use the flag --no-backup and the .orig files will not be created

hg revert --no-backup filename.java
Fooman
+1  A: 

I find the purge extension handy. Usage:

hg purge

"This extension purges all files and directories not being tracked by Mercurial" - including the .orig files but excluding ignored files (unless you use --all).

Jonah Braun