如何忽略文件夹而不将其从我的存储库中删除
我有 tmp/ 和 cache/ 目录,它们不断生成不需要提交的文件。
我如何设置它以便 svn 忽略它们,但不删除它们或从存储库中删除它们,站点需要它们才能工作。
I have this tmp/ and cache/ directories, that keep generating files that don't need to be commited.
How can I set it so svn ignores them, but doesn't delete them or remove them from the repository, they are needed for the site to work.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
编辑:如果您之前已经提交过,请执行以下步骤
EDIT: Here's the steps if you already previously committed
命令是:
如果需要,您可以使用 * 表示路径中的“任何字符”,例如 *.project。
Tortoise svn 是一个很好的用户友好界面解决方案(就像 Petar Ivanov 所说)。如果您使用的是 PC,那么它是“必备”软件。如果您使用其他操作系统或想要完全控制 svn,我建议您阅读有关使用 svn 的命令行的更多信息。这并不难,谷歌对此了解很多:)
您可以阅读更多相关信息:此处
有关 cmd svn 的更多信息: 此处
The command is:
You can use * for "any chars" in the path like, *.project if you want.
Tortoise svn is a good solution for user friendly interface(like Petar Ivanov says). If you are on PC it's "must have" software. If you are on other OS or want full control of svn I suggest you read more about command line working with svn. It's not hard and google knows many things about it :)
you can read more about it: here
And more about cmd svn: here
您可以向父文件夹添加 svn 属性:svn:ignore。
如果您使用乌龟:
右键单击 ->属性-> SVN->属性... -> (添加或编辑)
在控制台中:
svn propset svn:ignore [路径/文件]
You can add a svn property to the parent folder: svn:ignore.
If you use tortoise:
Right click -> Properties -> SVN -> Properties... -> (add or edit)
In the console:
svn propset svn:ignore [path/file(s)]