Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的仓库中有一个包含模板项目的文件夹。推送后,文件夹被添加到.gitignore。这对新文件很有用,但它仍然会跟踪修改过的文件。
我知道在本地忽略更改的选项
git update-index --assume-unchanged
但我希望repo 的所有用户都忽略新文件和修改文件。
如何让 git 忽略修改过的文件,最好在 .gitignore 中设置?
You can use .gitignore to ignore new files and update-index --assume-unchanged to ignore versioned files