Skip to content

Latest commit

 

History

History
7 lines (4 loc) · 267 Bytes

orig_files.md

File metadata and controls

7 lines (4 loc) · 267 Bytes

Got a bunch of .orig files you don't want?

use powershell to recursively delete all the .orig files created by mercurial after reverting (i.e. abandoning) a change.

dir . *.orig -recurse | del

i.e. after a "hg revert --all" or a merge gone horribly right.