找出存储库路径的最早修订版?
我正在尝试查看路径的最早修订版。但该路径在版本 1 中不存在。有没有办法在版本中找出创建的路径?
I am trying to check out the earliest revision of a path. But the path does not exist in rev 1. Is there a way to find out in revision the path was created?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
(文档)。要自动获取修订版本而不是手动过滤掉它,请使用
(docs). To get the revision automatically instead of manually filtering it out, use
您可以使用 svn log 进行反向修订:
svn log -r 1:HEAD --limit 1
You may use a reverse revision with svn log:
svn log -r 1:HEAD --limit 1