每个开发人员是否可以使用此文件?例如launchSettings.machinename.json
我最初认为应该在git中忽略它,但是后来偶然发现了这个问题
https://github.com/github/gitignore/pull/2705
我可以创建一个Project类型的自定义配置文件,但是那不使用IIS。制作个人资料和尝试覆盖applicationUrl的各种方法均无效
答案 0 :(得分:0)
我仍然看不到这样做,但是git提供了专门针对此类情况忽略更改的方法
https://medium.com/@igloude/git-skip-worktree-and-how-i-used-to-hate-config-files-e84a44a8c859
为此
git update-index --skip-worktree launchSettings.json
撤消此操作
git update-index --no-skip-worktree launchSettings.json
要查看以此方式更改的文件
git ls -files -v