我在开始一个项目时使用了我的Wordpress入门套件的Git repo以及我的所有插件和主题。
目前我必须手动删除所有我不想要的文件,我想用.gitignore自动删除。
需要包括哪些内容:
/wp-content/themes/ and all the subdirectories in here
/wp-content/plugins/ and all the subdirectories in here
我的问题是:如何在完整的Wordpress安装中使用.gitignore执行此操作?
我在Stackoverflow上发现了类似的问题,但我没有找到包含所有子目录的答案。
提前致谢!
答案 0 :(得分:1)
试试这个:
!wp-content/themes/
!wp-content/plugins/
请记住尾随斜杠非常重要。