Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我没有来自 SVN 存储库的任何文件的本地副本。我确实有 SVN 中某个文件的完整路径 URL。我怎样才能看到该文件的修订版 1234 与以前的修订版之间的区别,无论它可能是什么?
svn diff -c 1234 $URL
假设您在添加 -c 时使用的是高于 1.4 的 Subversion 版本。否则你需要这样做:
svn diff -r 1233:1234 $URL
如果您想查看包含跨多个修订的更改的差异,您只需将您提供的修订号扩展为-r.
-r
您可以在 SVN Book 中查看 diff 子命令的详细文档。