Git:从不提交更改的文件(但仍保留原始修订版本。)
什么是一个好的 git 实践来表示永远不应该提交更改的文件?
例如,对于 WordPress 主题开发项目,我在 git 中跟踪原始 WordPress 文件; wp-config.php 配置文件包含仅与当前系统相关的本地信息,需要更改,但我不想将其提交给git。
在 Perforce 中,我曾经将此类事件保存为 编号变更列表并且从不签入。我想知道git是否可以使用类似的技巧。
What is a good git practice to denote that a changed file should never be committed?
For example, for a WordPress theme development project, I am tracking the original WordPress files in git; and the wp-config.php config file, which contains local info that only pertains to the current system, needs to be changed but I don't want to commit it to git.
In Perforce, I used to save this type of event as a numbered changelist and never check it in. I was wondering whether a similar trick is available with git.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您仍然想保留
wp-config.php
版本,但忽略对它的任何本地更改:这与 .gitignore 不同,它只有在您删除时才有效索引中的第一个
wp-config.php
:If you still want to keep
wp-config.php
versioned, but ignore any local change to it:This is different that a .gitignore, which would only work if you remove first
wp-config.php
from the index:您可以使用 .gitignore 文件来解决这个问题。
You can use .gitignore file to solve this problem.