版本控制 – 如何列出我创建的所有文件?
发布时间:2020-12-20 11:23:41 所属栏目:Python 来源:网络整理
导读:我想获得最初由我创建的当前版本中的所有文件的列表.有谁知道我怎么做到这一点? 解决方法 这是另一种更直接的方法. for f in `hg locate`; do hg log -r "first(follow('$f'))" --template "$f: {author}n"; done 翻译: for each file follow its history
我想获得最初由我创建的当前版本中的所有文件的列表.有谁知道我怎么做到这一点?
解决方法
这是另一种更直接的方法.
for f in `hg locate`; do hg log -r "first(follow('$f'))" --template "$f: {author}n"; done 翻译: for each file follow its history to the beginning print the filename and author 要简单地获取Bob首先介绍的文件列表: for f in `hg locate`; do hg log -r "first(follow('$f')) and author(bob)" --template "$fn"; done (编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |