忽略包含文件夹,但不包含文件夹

时间:2013-08-14 15:07:41

标签: wordpress git module themes gitignore

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

请允许我澄清一下。

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

  • 博客
    • 可湿性粉剂内容
    • WP-包括
      • 主题
      • 模块
    • [...]

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

1 个答案:

答案 0 :(得分: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/