如何使用 git 跟踪子目录中的某些文件而不是所有其他文件?

发布于 2025-01-08 10:20:01 字数 330 浏览 0 评论 0原文

我想跟踪这种风格的文件

# Ignore everything
*
# But not these files...
!.gitignore
!/projectA/Makefile
!/projectB/Makefile

事实证明 git 无法跟踪 projectAprojectB 子目录中的 Makefile。一种解决方案是在子目录中创建 .gitignore 文件,但我不喜欢它,因为我必须手动创建很多不同的 .gitignore 文件。知道如何在 git root 目录的 .gitignore 中做到这一点吗?

I'd like to track files in this style

# Ignore everything
*
# But not these files...
!.gitignore
!/projectA/Makefile
!/projectB/Makefile

It turns out git can't track the Makefiles in the subdirectories of projectA and projectB. One solution is to create .gitignore file in the subdirectories, but I don't like it because I have to manually create a lot of different .gitignore files. Any idea how to do that in the .gitignore of git root dir?

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

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

发布评论

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

评论(1

萌吟 2025-01-15 10:20:01

您可以执行以下操作:

  1. 您需要跟踪文件夹才能跟踪文件夹中的 Makefile
  2. 但我们不想跟踪文件夹中的任何内容 >
  3. Makefile 除外

将这些部分放在一起,将这三行放入您的 .gitignore 中

!/projectA/
/项目A/*
!/projectA/Makefile

这有点冗长,但我不知道更短的方法。

You can do something like this:

  1. You need to track the folder in order to track the Makefile in the folder
  2. But we don't want to track anything in the folder
  3. Except the Makefile.

Put these pieces together to get these three lines in your .gitignore

!/projectA/
/projectA/*
!/projectA/Makefile

It's a bit verbose, but I don't know of a shorter method.

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