如何在将分支剪切到某个版本号后修改文件?

发布于 2024-12-29 04:03:38 字数 144 浏览 1 评论 0原文

我的老板希望我给他在将分支剪切到某个修订号后修改的文件列表。那么最好的方法是什么?我尝试了以下操作,

svn diff -r 755:HEAD --summarize

但它没有向我显示一些我在切割分支后修改的文件。还有其他办法吗,请帮助我。

My boss wanted me to give him the list of files that was modified after cutting the branch to a certain revision no. So what is the best way to do it? I tried the following,

svn diff -r 755:HEAD --summarize

But its not showing me some the file that I have modified after cutting the branc. Is there any other way to do it, please help me.

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

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

发布评论

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

评论(1

白龙吟 2025-01-05 04:03:38

已修改的文件列表

是 svn log 的输出,-v -q 用于带有文件列表的安静详细模式,您必须执行以下操作:

  • grep
  • sort
  • uniq

list of files that was modified

is output of svn log, -v -q for quiet verbose mode with filelists, which you have to:

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