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.
此文件不包含在以前的问题中,例如
将 Visual Studio 与 Git 结合使用时要忽略的文件
和
.gitignore 用于 Visual Studio 项目和解决方案
但我不知道这些文件是否应该被忽略,有人对此有保证吗?
源代码是唯一应该提交的东西。您不希望将任何人工制品提交到您的存储库。确保您的工作流程不带有任何错误的假设。配置文件是另一回事。您想跟踪它们,但希望它们在不同的克隆上有所不同(尤其是连接字符串),具体取决于它们的环境(例如,CI 服务器与开发人员的机器)。对于这些情况,请考虑编写脚本或涂抹/清理脚本(progit.org/book 中的 git 属性章节)。