How can I extract all changed files of a changeset in Mercurial?

前端 未结 4 417
执笔经年
执笔经年 2021-02-02 03:40

Until recently we have been using SVN for all projects of our web studio, and there is a very convenient feature present in several clients like Subversive and TortoiseSVN that

4条回答
  •  囚心锁ツ
    2021-02-02 03:52

    This command outputs names of all changed files in a specified revision:

    hg export revision_num | grep ^diff | cut -f 6 -d ' '
    

提交回复
热议问题