忽略git中已删除的文件?

发布于 2024-08-28 04:52:24 字数 246 浏览 7 评论 0原文

git 是否可以忽略已删除的文件? git update-index --assume-unchanged 允许我忽略修改,但它仍然跟踪删除。

(这很相似,但我找不到“John Doe”在哪里重申了他的问题:忽略 git 中修改(但未提交)的文件?

Is it possible to ignore deleted files in git? git update-index --assume-unchanged allows me to ignore modifications, but it still tracks deletions.

(This is similar, but I couldn't find where "John Doe" restated his question: Ignore modified (but not committed) files in git?)

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

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

发布评论

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

评论(2

荭秂 2024-09-04 04:52:24

我不会尝试忽略“删除”状态,而是:

  • 不删除目录和其中的文件
  • 两个 Git 存储库,有效地将要删除的子目录分离到单独的 Git 存储库中。
  • 继续主 Git 存储库。

注意:这可能与当前与 SVN 同步的 Git 存储库不兼容。

Rather than trying to ignore the "delete" status, I would:

  • not remove the directory and those files in it
  • split the Git repo in two, effectively detaching the subdirectory to be removed into a separate Git repository.
  • go on with the main Git repo.

Note: that may not be compatible with a Git repo currently synchronized with a SVN one.

再浓的妆也掩不了殇 2024-09-04 04:52:24

以下停止肯定会解决您的问题:

  1. 确保所有已删除的文件都不会暂存以提交。
    如果它们已暂存,要取消暂存它们,您只需执行 git reset

  2. 在此步骤之后,运行以下命令

    git ls-files --deleted -z | git update-index --assume-unchanged -z --stdin

注意: 第一个命令。 git ls-files --deleted -z,以字符串形式列出所有已删除的文件。然后它将其作为第二个命令的输入。

The following stops will surely solve your problem:

  1. Ensure that all deleted files are not staged to commit.
    If they are staged, to unstage them you can simply do git reset

  2. After this step, run the following command

    git ls-files --deleted -z | git update-index --assume-unchanged -z --stdin

Note: The first command. git ls-files --deleted -z, lists all the deleted files as a string. Then it takes that as the input to the second command.

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