如何在将分支剪切到某个版本号后修改文件?
我的老板希望我给他在将分支剪切到某个修订号后修改的文件列表。那么最好的方法是什么?我尝试了以下操作,
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是 svn log 的输出,-v -q 用于带有文件列表的安静详细模式,您必须执行以下操作:
is output of
svn log
, -v -q for quiet verbose mode with filelists, which you have to: