查看 svn 中从上次更新到当前工作副本的更改

发布于 2024-12-28 10:10:41 字数 181 浏览 0 评论 0原文

使用 svn,是否可以看到文件与上次更新中同一文件的状态之间的差异?

例如,我签出一个文件 - foo.txt - 该文件包含文本“你好”,然后我添加另一行 - “再见”。我希望看到我添加了该行。

如何查看我的文件和已提取的文件之间的关系?我不希望本地文件和中央文件之间存在差异。

希望这是有道理的。

Using svn, is it possible to see the differences in a file from the state of the same of file in it's last last update?

For example I checkout a file - foo.txt - that file contained the text 'hello' I then add another line - 'goodbye'. I would like to see that I had added that line.

How can I see between my file and the one that was pulled? I do not want the differences between my local file and the central file.

Hope that makes sense.

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

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

发布评论

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

评论(1

未蓝澄海的烟 2025-01-04 10:10:41

如果我理解正确的话,你需要 svn diff:

I:\>svn status
M       sql\settings.ini

I:\>svn diff sql\settings.ini
Index: sql/settings.ini
===================================================================
--- sql/settings.ini       (revision 1322)
+++ sql/settings.ini       (working copy)
@@ -5,6 +5,7 @@
 ;;;;;;;;;;;;;;;;
 ; Main options ;
 ;;;;;;;;;;;;;;;;
+// Foo Bar

 [database]
 ; General database options

If I understood correctly, you want svn diff:

I:\>svn status
M       sql\settings.ini

I:\>svn diff sql\settings.ini
Index: sql/settings.ini
===================================================================
--- sql/settings.ini       (revision 1322)
+++ sql/settings.ini       (working copy)
@@ -5,6 +5,7 @@
 ;;;;;;;;;;;;;;;;
 ; Main options ;
 ;;;;;;;;;;;;;;;;
+// Foo Bar

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