TortoiseGit 相当于 TortoiseSVN 的全局忽略模式
是否有相当于 TortoiseSVN 的“全局忽略模式”设置的 TortoiseGit?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
是否有相当于 TortoiseSVN 的“全局忽略模式”设置的 TortoiseGit?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
正如这个SO问题中提到的,git有3个级别的忽略文件。
如果您在
~/.gitconfig
中引用一个,您可以管理全局忽略模式(即使这没有直接集成在 TortoiseGit)。As mentioned in this SO question, git has 3 levels of ignore files.
If you reference one in your
~/.gitconfig
, you can manage your global ignore pattern (even though this is not directly integrated in TortoiseGit).全局忽略模式存储在
中,其中 ~ 是用户主目录。
一些别名示例(由于 --global 选项而存储在提到的文件中):
参见 git config 了解详细信息。
global ignore patterns are stored in
where ~ is the users home directory.
Some alias examples (which are stored in mentioned files due to the --global option):
See git config for details.