Message6442

Author buka
Recipients
Date 2008-06-30.04:57:23
Content
I use Mercurial Distributed SCM (version 9f1e6ab76069+tortoisehg).

I'm not sure, I'm correct. 
Behavior of 'hg export' was unexpected for me.
When I try to export several changesets to a file it stores only the latest of them.
For example:
 > hg export -o out.txt 1 2
Stores only changeset number 2 to the 'out.txt' file. Information about revision
1 is missed.

Instead of command above I need to use the next one:
 > hg export 1 2 > out.txt
to store changes for the first and the second revisions.
History
Date User Action Args
2008-06-30 04:57:24bukasetmessageid: <1214801844.13.0.258864699034.issue1207@selenic.com>
2008-06-30 04:57:24bukalinkissue1207 messages
2008-06-30 04:57:23bukacreate