如何在不更新文件的情况下浏览 SVN 存储库中的 HEAD 文件?
如何在不更新文件的情况下浏览 SVN 存储库中文件的 HEAD 修订版源代码?
我经常想在 VI
或 cat
命令中浏览文件的 HEAD 修订版源代码。但我不想更新文件。(如果我更新文件,我必须使用 svn up -r [revNo] 重新更新。)
他们有什么方法可以做到这一点吗?
svn diff
不显示文件的完整源代码。
提前致谢
How can I glance a HEAD revision source code of a file in SVN repository without updating file?
I often want to glance a HEAD revision source code of a file in VI
or cat
command. but I don't want to update the file.(if I update the file, I have to re-update with svn up -r [revNo]
. )
is they any way to do this?
svn diff
doesn't show the whole source code of a file.
thanks in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为你想要的是 svn cat :
给你 HEAD 修订版。 更多信息。
I think what you want is
svn cat
:Gives you the HEAD revision. More info.