Mercurial - How do I create a .zip of files changed between two revisions?

前端 未结 9 2138
迷失自我
迷失自我 2021-02-04 16:29

I have a personal Mercurial repository tracking some changes I am working on. I\'d like to share these changes with a collaborator, however they don\'t have/can\'t get Mercuria

9条回答
  •  野性不改
    2021-02-04 17:04

    In UNIX this can be done with:

    hg status --rev 1 --rev 2 -m -a -n | xargs zip changes.zip
    

提交回复
热议问题