在源代码管理中维护 .dsw 和 .dsp 文件
是否建议在源代码控制下维护 .dsw 或 .dsp 文件,并根据项目定期签入和签出。
Is it advisable to maintain .dsw or .dsp files under source control with periodic check ins and check outs depending on the projects.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的当然!否则,当您向项目添加新文件时,其他开发人员如何知道向项目添加新文件?您必须告诉他们,这将违背源代码控制的目的!*
每次修改解决方案/项目文件时,您都会签入对它们的更改,就像任何其他文件一样。
* 嗯,不完全是
Yes, of course! Otherwise how would other developers know to add new files to the project when you add one to your project? You'd have to tell them, which would defeat the purpose of source control!*
You would check in changes to your solution/project files every time they're modified, just like any other file.
* Well, not entirely