gpt4 book ai didi

git - 如何在不使用 .gitignore 的情况下不跟踪 Git 中添加的、未提交的文件

转载 作者:太空狗 更新时间:2023-10-29 14:38:30 26 4
gpt4 key购买 nike

情况:我想在我的 git 文件夹中添加一个 .rvmrc 文件,但我意识到我的整个团队都不需要这个文件。我不想仅仅为了我自己的需要而修改 .gitignore 文件。但是,我在 git 的这方面不熟练,所以在答案栏中的任何建议都表示赞赏

因此,我在网上四处寻找有关忽略添加到 git 存储库的文件的命令或 git 概念。我看的每篇文章都指向我向 .gitignore 添加一些东西(我不想这样做,因为它会导致新的提交)或忽略本地已经跟踪的文件。有人可以给我指点吗?

谢谢!

最佳答案

我认为您正在寻找 Git 的 .git/info/exclude 文件。

此文件用于“私有(private)忽略”,类似于 .gitignore 但仅适用于存储库的一个副本。它们提交到存储库。

这是GitHub has to say about the matter :

Explicit repository excludes

If you don't want to create a .gitignore file to share with others, you can create rules that are not committed with the repository. You can use this technique for locally-generated files that you don't expect other users to generate, such as files created by your editor.

Use your favorite text editor to open the file called .git/info/exclude within the root of your Git repository. Any rule you add here will not be checked in, and will only ingore files for your local repository.

  1. In Terminal, navigate to the location of your Git repository.
  2. Using your favorite text editor, open the file .git/info/exclude.

关于git - 如何在不使用 .gitignore 的情况下不跟踪 Git 中添加的、未提交的文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24211388/

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