2017-08-03 136 views
0

我在啓動項目時使用了我的Wordpress入門工具包的所有插件和主題的Git回購。使用.gitignore只包含特定的目錄及其子目錄

目前我必須手動刪除所有我不想要的文件,我想用.gitignore自動執行此操作。

什麼需要包括:

/wp-content/themes/ and all the subdirectories in here /wp-content/plugins/ and all the subdirectories in here

我的問題是:我怎麼能做到這一點對一個完整的WordPress使用的.gitignore安裝?

我在Stackoverflow上發現了類似的問題,但是我沒有找到任何包含所有子目錄的答案。

在此先感謝!

+0

這仍然是一個問題? – justkidding96

回答

1

試試這個:

!wp-content/themes/ 
!wp-content/plugins/ 

記住拖尾的斜槓是很重要的。

相關問題