The solution is to tell Git not to ignore sub directories:
*
!.gitattributes
!.gitignore
!readme.md
!.gitkeep
!*.php
!*/
Otherwise, only the *.php
files in the first directory level will be accepted and all sub directories will be ignored.
The solution is to tell Git not to ignore sub directories:
*
!.gitattributes
!.gitignore
!readme.md
!.gitkeep
!*.php
!*/
Otherwise, only the *.php
files in the first directory level will be accepted and all sub directories will be ignored.