如何为项目中的所有用户配置 tortoise svn 设置?

发布于 2024-08-21 18:06:17 字数 181 浏览 5 评论 0原文

我们使用 subversion 来存储所有源代码。我们使用 Tortoise SVN 客户端从 subversion 服务器获取文件。开发人员常见问题的一个根源是所有开发人员计算机上的“全局忽略模式”设置并不相同。我们如何控制项目特定的 tortoise svn 设置在所有开发人员机器上的传播(注意:我们所有的机器都使用 Win XP 操作系统)

We use subversion to store all our source code. We use Tortoise SVN client to fetch files from the subversion server. A source of common problem across developers is that the "Global Ignore Pattern" settings aren't the same across all developer machines. How do we control propagation of project specific tortoise svn settings across all developer machines (note: all our machines are using the Win XP OS)

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

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

发布评论

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

评论(2

旧街凉风 2024-08-28 18:06:17

我认为您滥用了全局忽略模式功能 - 它确实应该用于特定于开发人员的事情。请改用 svn:ignore 属性,这样它就存储在存储库中。我知道在每个目录上设置它是很痛苦的:(。

在 Tortoise 中,您可以通过右键单击文件和目录并选择“Tortoise SVN”->“添加到忽略列表”来将文件和目录添加到忽略列表中然后决定是否需要通配符或特定文件名。

I think you're misusing the global ignore pattern feature -- it should really be used for things that are developer-specific. Use the svn:ignore property instead, that way it's stored in the repository. I know that it's a pain having to set it on every directory :(.

In Tortoise, you can add files and directories to the ignore list by right-clicking on them and picking "Tortoise SVN"->"Add to ignore list" then deciding whether you want the wildcard or the specific filename.

沉溺在你眼里的海 2024-08-28 18:06:17

将 svn:ignore 存储在您的项目中。右键单击该文件夹,选择“属性”,然后选择“Subversion”选项卡,然后单击“属性...”按钮,在下一个对话框中按“新建...”从下拉列表中选择 svn:ignore 并在单独的行中输入所有项目:

*.suo

*.用户

bin

Store svn:ignore with your project. Right-click on the folder, choose Properties, then select Subversion tab, then click Properties... button, on the next dialog press New... Choose svn:ignore from the dropdown and enter all items on separate lines:

*.suo

*.user

bin

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