如何忽略文件夹而不将其从我的存储库中删除

发布于 2024-11-27 10:57:12 字数 97 浏览 1 评论 0原文

我有 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 技术交流群。

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

发布评论

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

评论(3

屋顶上的小猫咪 2024-12-04 10:57:12
$ cd /path/to/app/tmp
$ svn propset svn:ignore '*' .
$ cd /path/to/app/cache
$ svn propset svn:ignore '*' .

编辑:如果您之前已经提交过,请执行以下步骤

$ cd /path/to/app/tmp
$ svn st
M slkdjfag.jpg
M gasgsag.png
. #bunch of M's

$ svn rm * --force
$ svn ci -m'trunk: cleaning up tmp directory'
$ svn propset svn:ignore '*' .
$ touch a
$ svn st // shouldn't output anything
$ cd /path/to/app/tmp
$ svn propset svn:ignore '*' .
$ cd /path/to/app/cache
$ svn propset svn:ignore '*' .

EDIT: Here's the steps if you already previously committed

$ cd /path/to/app/tmp
$ svn st
M slkdjfag.jpg
M gasgsag.png
. #bunch of M's

$ svn rm * --force
$ svn ci -m'trunk: cleaning up tmp directory'
$ svn propset svn:ignore '*' .
$ touch a
$ svn st // shouldn't output anything
喜你已久 2024-12-04 10:57:12

命令是:

svn propedit svn:ignore ./some_path

如果需要,您可以使用 * 表示路径中的“任何字符”,例如 *.project。

Tortoise svn 是一个很好的用户友好界面解决方案(就像 Petar Ivanov 所说)。如果您使用的是 PC,那么它是“必备”软件。如果您使用其他操作系统或想要完全控制 svn,我建议您阅读有关使用 svn 的命令行的更多信息。这并不难,谷歌对此了解很多:)

您可以阅读更多相关信息:此处

有关 cmd svn 的更多信息: 此处

The command is:

svn propedit svn:ignore ./some_path

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

风吹短裙飘 2024-12-04 10:57:12

您可以向父文件夹添加 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)]

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