2

我正在清理我的开发工作流程,我想知道 Git 是否有可能忽略包含文件夹,但允许其中的文件夹?

请允许我澄清一下。

我目前正在我的网站上工作,并且正在为我的新 Wordpress 博客设置主题 - 显然我有一个本地安装的 Wordpress 和一个远程安装。我希望能够忽略主文件夹,只允许主题文件夹。结构如下。

  • 博客
    • wp-内容
    • wp-包括
      • 主题
      • 模块
    • [...]

我想完全忽略除主题和模块文件夹之外的所有内容 - 我将如何在我的 .gitignore 中执行此操作?

4

1 回答 1

2

这个怎么样:

# Ignore everything in the top-most directory
/*

# Except the wp-includes directory
!wp-includes/

# Exclude everything in the wp-includes directory
wp-includes/*

# Except the folders themes and modules
!wp-includes/themes/
!wp-includes/modules/
于 2013-08-14T15:42:18.207 回答