- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
不想更改 .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/
我是一名优秀的程序员,十分优秀!