svn中有一些文件夹(其地址)如何查看上次修改的确切时间?
所以我们有一个文件夹。它在svn下。我们不想下载所有 svn,无论是该文件夹。我们想要获取其任何内容(任何文件、任何子文件夹)最后修改的最新日期,并且我们想要获取最后修改的是哪个文件。例如文件夹 http://svn.boost.org/svn/boost/sandbox/boost/extension
。那么如何做这样的事情呢?
BTW:我们可以通过浏览器从svn服务器获取这些信息吗?
so we have a folder. it is under svn. we do not want to download all svn, ither that folder. We want to get the latest date of any of its contents (any file, any sub folder) last modification, and we want to get which file was modificated last. So example folder http://svn.boost.org/svn/boost/sandbox/boost/extension
. So how to do such thing?
BTW: can we get such info from svn server via browser?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
现在我已经找到了命令参考,您应该能够执行以下操作:
应该输出如下:
这可能是重要的行:
作为参考,因为我永远找不到它... subversion 有助于提供 此处
Now that I've found a command reference, you should be able to just do:
Which should output like:
This probably being the important line:
For reference, since I can never find it... subversion helps available here
svn info -v 文件夹的路径
,即将在浏览器中看到svn需要安装websvn http://www .websvn.info/
svn info -v the path for the folder
and about to see the svn in the browser you need to install websvn http://www.websvn.info/
我使用 svn log 来处理大多数事情:
I use svn log for most things: