在子文件夹/路径下递归显示颠覆历史记录

发布于 2024-09-10 08:32:53 字数 284 浏览 0 评论 0原文

svn help log 没有给我递归查看历史记录的选项。

svn log -l3 --recursive SVN_ROOT_URL 不起作用。我希望它能给我 SVN_ROOT_URL 下面的最后 3 个提交。

这真的很烦人。我总是必须启动 IDE 或查看 team-city 来查看项目的最后提交(尽管我不确定这些工具在幕后执行哪个 svn 命令)。

我认为这个功能非常重要,希望 svn-CLI 能够支持它,而不需要大量的 bash 脚本编写工作。

svn help log doesn't give me an option to see the history recursively.

svn log -l3 --recursive SVN_ROOT_URL does not work. I would expect that it gives me the last 3 commits below SVN_ROOT_URL.

This is really annoying. I always have to start my IDE or look at team-city to see the last commits on a project (though I am not sure which svn command these tools execute behind the scenes).

I think this feature is very important and hope it is supported out of the svn-CLI box without high bash-scripting effort.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

未蓝澄海的烟 2024-09-17 08:32:54

svn log 已经递归地执行此操作。我的错误是,我之前没有执行 svn update

如果您不想执行 svn update 来“保护”您的工作副本,请在服务器目标上执行 log 命令:


$ svn info .
...
URL: http://rep.com/svn/foo
...
$ svn log -v http://rep.com/svn/foo

我使用详细的 -v 标志来还可以查看所触及的文件。

svn log is already doing it recursively. My error was, that I didn't do an svn update before.

If you don't want to do a svn update to "protect" your working-copy do the log command on the server destination:


$ svn info .
...
URL: http://rep.com/svn/foo
...
$ svn log -v http://rep.com/svn/foo

i use the verbose -v flag to also see the touched files.

万劫不复 2024-09-17 08:32:54
  • 对于linux:svn update before svn log
  • 对于windows:右键单击文件夹并显示日志(不需要首先更新)

这真的很混乱

  • For linux : svn update before svn log
  • For windows : right click on the folder and show log (no need to update firstly)

It's really confusing

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文