暂时忽略 subversion 忽略设置

发布于 2024-11-24 13:51:53 字数 214 浏览 1 评论 0原文

我有一堆通常想要忽略的文件,因此我在全局忽略以及文件夹属性忽略列表中列出了文件扩展名。但是,我一次性需要查看工作副本中所有未版本控制的文件,甚至是那些我通常想忽略的文件。如果不清除全局忽略,然后删除忽略文件夹属性,进行检查,然后重新添加忽略属性和全局字符串,我无法找到一种简单的方法来执行此操作。

是否有一些简单的方法可以查看我的工作副本中所有未版本化文件的列表(并提交),无论它们是否应该被忽略?

I have a bunch of files that I normally want to ignore so I have the file extensions listed in my global ignore as well as on the folder properties ignore list. However, I have a one-time need to see all unversioned files in my working copy, even those I normally want to ignore. I can't figure out an easy way to do this without clearing out my global ignore, and then removing the ignore folder properties, doing my check, and then adding the ignore property and global string back in.

Is there some easy way to just see a list of (and commit) all unversioned files in my working copy no matter if they should be ignored or not?

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

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

发布评论

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

评论(1

相对绾红妆 2024-12-01 13:51:53

为什么在执行 svn add 时不使用 --no-ignore 标志?

--no-ignore :忽略默认值和 svn:ignore 属性忽略

尝试执行以下操作:

 svn add --force --no-ignore .

请注意,您必须注意添加的文件。

Why don't you use the --no-ignore flag while doing svn add ?

--no-ignore : disregard default and svn:ignore property ignores

Try doing something like:

 svn add --force --no-ignore .

Note that you have to careful about what files get added.

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