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

前端 未结 4 406
执笔经年
执笔经年 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:40

    This gives you the list of modified files in revision 4:

    hg log -r 4 --template {files}
    

    Update: If you'd like to have one file per line, you may use the style described in Hg book.

提交回复
热议问题