暂时忽略 subversion 忽略设置
我有一堆通常想要忽略的文件,因此我在全局忽略以及文件夹属性忽略列表中列出了文件扩展名。但是,我一次性需要查看工作副本中所有未版本控制的文件,甚至是那些我通常想忽略的文件。如果不清除全局忽略,然后删除忽略文件夹属性,进行检查,然后重新添加忽略属性和全局字符串,我无法找到一种简单的方法来执行此操作。
是否有一些简单的方法可以查看我的工作副本中所有未版本化文件的列表(并提交),无论它们是否应该被忽略?
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为什么在执行
svn add
时不使用--no-ignore
标志?--no-ignore :忽略默认值和 svn:ignore 属性忽略
尝试执行以下操作:
请注意,您必须注意添加的文件。
Why don't you use the
--no-ignore
flag while doingsvn add
?--no-ignore : disregard default and svn:ignore property ignores
Try doing something like:
Note that you have to careful about what files get added.