知道我在 Subversion 中从哪个提交创建了分支吗?
我过去从树干上做了一个分支。今天是否有可能知道它是由哪个提交做出的?
如果是,怎么办?是否可以使用 Subversive 的 Eclipse 插件来完成?
I have done a branch in the past from the trunk. Is it possible to know, today, from which commit was it made from?
If yes, how? Is it possible to accomplish with Subversive's Eclipse plugin?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
![扫码二维码加入Web技术交流群](/public/img/jiaqun_03.jpg)
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
版本控制的重点是保留过去的详细日志。
我认为
svn log --stop-on-copy
就是您所追求的。我不知道如何从 Eclipse 调用它。
The whole point of version control is to preserve a detailed log of the past.
I think
svn log --stop-on-copy
is what you are after. I have no idea how to invoke that from Eclipse.