Git:从不提交更改的文件(但仍保留原始修订版本。)

发布于 2024-12-20 17:07:22 字数 384 浏览 0 评论 0原文

什么是一个好的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

°如果伤别离去 2024-12-27 17:07:22

如果您仍然想保留 wp-config.php 版本,但忽略对它的任何本地更改:

git update-index --assume-unchanged wp-config.php

这与 .gitignore 不同,它只有在您删除时才有效索引中的第一个 wp-config.php

git rm --cache `wp-config.php`
echo wp-config.php >> .gitignore

If you still want to keep wp-config.php versioned, but ignore any local change to it:

git update-index --assume-unchanged wp-config.php

This is different that a .gitignore, which would only work if you remove first wp-config.php from the index:

git rm --cache `wp-config.php`
echo wp-config.php >> .gitignore
燃情 2024-12-27 17:07:22

您可以使用 .gitignore 文件来解决这个问题。

You can use .gitignore file to solve this problem.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文