Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在清理我的开发工作流程,我想知道 Git 是否有可能忽略包含文件夹,但允许其中的文件夹?
请允许我澄清一下。
我目前正在我的网站上工作,并且正在为我的新 Wordpress 博客设置主题 - 显然我有一个本地安装的 Wordpress 和一个远程安装。我希望能够忽略主文件夹,只允许主题文件夹。结构如下。
我想完全忽略除主题和模块文件夹之外的所有内容 - 我将如何在我的 .gitignore 中执行此操作?
这个怎么样:
# 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/