TortoiseGit 相当于 TortoiseSVN 的全局忽略模式

发布于 2024-09-28 17:31:46 字数 51 浏览 3 评论 0 原文

是否有相当于 TortoiseSVN 的“全局忽略模式”设置的 TortoiseGit?

Is there a TortoiseGit equivalent to TortoiseSVN's "global ignore patterns" setting?

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

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

发布评论

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

评论(2

初心未许 2024-10-05 17:31:46

正如这个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).

烟酒忠诚 2024-10-05 17:31:46

全局忽略模式存储在

  • ~/.gitconfig

中,其中 ~ 是用户主目录。

一些别名示例(由于 --global 选项而存储在提到的文件中):

  • git config --global alias.co checkout
  • git config --global alias.br 分支
  • git config --global alias.ci commit
  • git config --global alias.st status

参见 git config 了解详细信息。

global ignore patterns are stored in

  • ~/.gitconfig

where ~ is the users home directory.

Some alias examples (which are stored in mentioned files due to the --global option):

  • git config --global alias.co checkout
  • git config --global alias.br branch
  • git config --global alias.ci commit
  • git config --global alias.st status

See git config for details.

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