查看 svn 中从上次更新到当前工作副本的更改
使用 svn,是否可以看到文件与上次更新中同一文件的状态之间的差异?
例如,我签出一个文件 - foo.txt - 该文件包含文本“你好”,然后我添加另一行 - “再见”。我希望看到我添加了该行。
如何查看我的文件和已提取的文件之间的关系?我不希望本地文件和中央文件之间存在差异。
希望这是有道理的。
Using svn, is it possible to see the differences in a file from the state of the same of file in it's last last update?
For example I checkout a file - foo.txt - that file contained the text 'hello' I then add another line - 'goodbye'. I would like to see that I had added that line.
How can I see between my file and the one that was pulled? I do not want the differences between my local file and the central file.
Hope that makes sense.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果我理解正确的话,你需要 svn diff:
If I understood correctly, you want
svn diff
: