Qt 忽略 makefile、.pro.user 文件
我开发基于 Qt 的项目并使用 Mercurial 存储库(bitbucket.org 服务)进行版本控制。
每次我在存储库中提交时,都会有一些文件仅包含标头中的日期时间更改。因此,每次提交我都应该检查每个文件是否有重大更改,而不仅仅是时间戳。
我可以添加 makefile(Makefile、Makefile.Debug、Makefile.Release)和 .pro.user 文件扩展名吗?忽略列表? 我的意思是是否可以通过从 Qt Creator 启动 qmake 工具来重新生成它们?
I develop Qt-based project and use Mercurial repository (bitbucket.org service) for version control.
Each time I do commit in repository, there are some files which contains only date-time changes in headers. So each commit I should check each file that it has major changes, not only time stamp.
Could I add makefiles (Makefile, Makefile.Debug, Makefile.Release) and .pro.user file ext. to ignore list?
I mean is it possible to regenerate them via launching qmake tool from Qt Creator?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Makefile 是通过运行 qmake 生成的(从命令行或从 Qt Creator)。
.pro.user 文件是在创建或打开项目时由 Qt Creator 创建的,其中包含给定项目的编辑器配置等内容。
所有这些文件都不应该添加到 VSC,因此您绝对应该忽略它们。
Makefiles are generated by running qmake (either from command line or from Qt Creator).
.pro.user file is created by Qt Creator when a project is created or opened and contains stuff like editor configuration for a given project.
All those files shouldn't be added to VSC, so you should definitely ignore them.