忽略 git 中的文件,但在克隆项目时下载该文件

发布于 2024-12-04 04:23:23 字数 134 浏览 1 评论 0原文

我有一个文件,每次运行项目时都会受到修改。因此,我不希望 git 跟踪它,因此我将其添加到我的 .gitignore 文件中。

但是,我确实希望在克隆项目时提取该文件。

我怎样才能实现这个目标?

先感谢您。

I have a file that suffers modification every time I run my project. Thus, I don't want git to track it and so I add it to my .gitignore file.

However, I do wish for the file to be pulled when cloning the project.

How can I achieve this?

Thank you in advance.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

戈亓 2024-12-11 04:23:23

不,您不能忽略文件,不跟踪它并期望它在克隆中可用。

您可以做的是将文件添加到存储库,运行 git update-index --assume-unchanged 以便 git “忽略”对其所做的更改,然后您将在克隆中获得该文件。

No you cannot ignore a file, not track it and expect it to be available in clone.

What you can do is, add the file to the repo, run git update-index --assume-unchanged so that git "ignores" the changes to it and then you will have the file in clone.

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