How to archive/export all files changed since a specific revision with Mercurial?
Posted
by Boaz
on Stack Overflow
See other posts from Stack Overflow
or by Boaz
Published on 2010-05-11T19:53:03Z
Indexed on
2010/05/11
20:34 UTC
Read the original article
Hit count: 280
Hi,
Mercurial supports a handy archive command which allows you to export all files as they were in a specific revision (thanks to Ry4an for pointing this out in a comment) to another folder/zip file etc. This is done as follows:
hg archive -r REV destination
Is there a way to export only the files changed since a certain revision and to the head?
Thanks, Boaz
© Stack Overflow or respective owner