gpt4 book ai didi

git - .gitignore 文件可以命名吗? (例如 xxx.gitignore)

转载 作者:太空狗 更新时间:2023-10-29 13:49:00 43 4
gpt4 key购买 nike

我想知道是否可以在存储库中包含named .gitignore 文件,例如:

Composer.gitignore
Node.gitignore

以上两个示例都显示在 GitHub 的 gitignore template repository 中。 (也许这可能有点误导)。

我已经尝试将 Composer.gitignore 添加到我的存储库,但似乎该文件未被读取(我正在使用 SourceTree)。

编辑:

添加Boldewyn添加的相关信息不直接回答问题:

The page's README says:

A Collection of .gitignore templates and that's what it is: Only templates. If you want to use one, pick it, drop it in your repository and rename it to .gitignore.

git recognizes only two places for listing ignored files: .gitignore files in a folder/subfolder and the file .git/info/ignore. See git help gitignore for in-depth information.

最佳答案

让文件将 .gitignore 命名为 .gitignore 文件的唯一方法是:

  • 直接引用

    git config --global core.excludesfile ~/myfile.gitignore
  • 通过 smudge script from a content filter driver 生成它.
    第二个选项有点复杂,但会处理所有版本<file>.gitignore并生成最终的 .gitignore .

除了这两个选项, .gitignore man page不允许任何其他命名约定。

关于git - .gitignore 文件可以命名吗? (例如 xxx.gitignore),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29075998/

43 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com