Generating a list of which files changed between hg versions

前端 未结 2 1156
野的像风
野的像风 2020-12-07 10:21

I want to generate a list of which files changed between two revisions in a given directory in Mercurial.

In particular, I am not interested in what changed

2条回答
  •  無奈伤痛
    2020-12-07 10:43

    hg status --rev x:y
    

    where x and y are desired revision numbers (or tag or branch names).

    If you are using the terminal in windows add hg status --rev x:y> your-file.txt to save the list to a file.

提交回复
热议问题