gpt4 book ai didi

git - 如何在不使用 .gitignore 的情况下保留文件的本地版本?

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

不想更改 .gitignore,因为其他人想要存储库中的文件。但我有自己的副本,我想使用。

我编辑了 .git/info/exclude 并添加了以下内容:

/Gemfile
/Gemfile.lock
/config/database.yml
/spec/spec_helper.rb

这似乎没有做任何事情。 git status 仍然显示:

# Changes not staged for commit:
# (use "git add <file>..." to update what will be committed)
# (use "git checkout -- <file>..." to discard changes in working directory)
#
# modified: Gemfile
# modified: Gemfile.lock
# modified: config/database.yml
# modified: spec/spec_helper.rb

在不使用 .gitignore 的情况下保留本地文件版本的最佳方法是什么?

最佳答案

您可以调用 git update-index --assume-unchanged [file names] 或者如果有一堆文件,只需对 .gitignore 执行此操作并尽可能多地修改忽略文件你会喜欢。

来自 documentation (强调我的):

When the "assume unchanged" bit is on, git stops checking the working tree files for possible modifications, so you need to manually unset the bit to tell git when you change the working tree file. ...
This option can be also used as a coarse file-level mechanism to ignore uncommitted changes in tracked files (akin to what .gitignore does for untracked files).

关于git - 如何在不使用 .gitignore 的情况下保留文件的本地版本?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11979634/

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