次の構造に注意してください。
/assets --> this dir shouldn't be ignored. but SOME OF their contents SHOULD.;
ignoredfile.jpg --> should be ignored.
ignoredfile2.gif --> --> should be ignored.
/blog --> this dir shouldn't be ignored. but SOME OF their contents SHOULD.;
/images --> this dir shouldn't be ignored. but ALL their contents SHOULD.;
フォルダー内/assets
には、次のgitignoreファイルがあります。
# Ignore everything in this directory
*
# Except this file
!.gitignore
!/images
!/resize
!/blog
「/assets/blog」内に別の.gitignore
.
# Ignore everything in this directory
*
# Except those files
!.gitignore
!/images
問題
リモートサーバーにプッシュすると、git DO はディレクトリをプッシュしました/blog
が、ディレクトリはプッシュしません/blog/images
でした。なんで ?
どうすればこれを解決できますか?