隐藏文件和隐藏文件时出现问题TortoiseSVN 中的文件夹
我想配置 Tortoise 的全局忽略模式以隐藏文件夹“scripts/shavrir/database”及其下的所有内容,包括子文件夹。为此,我将以下模式添加到全局忽略模式中:
"scripts/shavrir/database/*.*"
这对直接在所述文件夹或其子文件夹中的文件都没有影响。
我不想使用 .svnignore 文件,因为我想在所有分支上获得效果。我做错了什么?
I would like to configure Tortoise's global ignore patterns to hide the folder "scripts/shavrir/database" and everything under it, including subfolders. For this, I added to the global ignore patterns this pattern:
"scripts/shavrir/database/*.*"
This has no effect, neither of files directly in said folder or in its sub-folders.
I don't want to use .svnignore file because I'd like to get the effect on all branches. What am I doing wrong?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
全局忽略列表不使用路径。为此,您需要使用 svn:ignore 属性,如果您使用 TortoiseSVN。
The global ignore list does not use paths. For this, you want to use the svn:ignore property, which is simple if you're using TortoiseSVN.
svn:ignore
属性设置为此值您希望将所有文件夹上的
。您只需执行一次,因为从那时起,当您创建分支(这是一个副本)时,它也会复制该文件夹的属性。
You want to set the
svn:ignore
property to this valueon all of your
folders. You’ll only have to do it once, because from then on when you create a branch (which is a copy), it will copy the properties of this folder as well.