如何列出我创建的所有文件?
我想获取当前版本中最初由我创建的所有文件的列表。有谁知道我该怎么做?
I would like to get a list of all files in the current revision that were initially created by me. Does anyone know how I can do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这是另一种更直接的方法。
翻译:
要简单地获取 Bob 首先引入的文件列表:
Here's another approach that's a bit more direct.
Translation:
To simply get a list of files first introduced by Bob:
以下是在 unix 或 mac 上执行此操作的方法:
恐怕我不知道如何在对开发人员不友好的操作系统上执行此操作。这会获取您添加过的所有文件,因此如果您想删除当前
tip
版本中不存在的文件,则需要与hg manifest
进行比较。Here's how you could do it on unix or mac:
I'm afraid I've no idea how you'd do it on developer-unfriendly OSes. That gets all files you ever added, so you'd need to compare with
hg manifest
if you wanted to remove files that aren't in the currenttip
revision.