有这将打印在命令行中回购浏览器的文件路径的命令?(Is there a command which

2019-09-17 01:42发布

有这将打印在命令行中回购浏览器的文件路径的命令?

SVN DIFF只打印文件名。

谢谢。

Answer 1:

svn info path/to/filename

会告诉你几条信息。 你要找的是那些URL和库根:

$ svn info mydialog.h
[...]
URL: http://svn.server.net/my-repo/trunk/ui/mydialog.h
Repository Root: http://svn.server.net/my-repo
[...]

URL是文件的绝对位置,库根是存储库的基本URL。 URL将始终与存储库根的地址开始,因此,如果您从URL的开始修整库根,你留下了在仓库里的文件的相对位置。 在这种情况下,这是

/trunk/ui/mydialog.h


Answer 2:

svn info



文章来源: Is there a command which will print the path of the file in the repo-browser in the command line?