.gitignore exclude files in directory but not certain directories

拟墨画扇 提交于 2019-11-28 15:11:17

Git doesn't track folders, only files, so if you ignore everything in a folder, Git won't have anything to track. You can add a .gitignore file to each directory (application/cache, application/cache/folder, application/cache/folder/onemorefolder/) with the following contents:

*
!.gitignore

Then, you can add those directories, and only the .gitignore file in each directory will get added -- but this means the directories will now be tracked (i.e., created when cloning).

KingCrunch

Git doesn't track empty directories. Just add some empty placeholder files in the folders you want to be committed.

touch application/cache/.keep
git add -f application/cache/.keep

Do this also with each "empty" folders. Later you can ignore these files, they really only exists to make sure that git creates those directories on clone. The entries in .gitignore keeps others files within the folders from being tracked (unless you force it with git add -f ;)).

There is another perhaps cleaner way to do this. Rather than having sub .gitignore files in the folders you want to keep. You can put this in the root .gitignore as follows:

application/cache/*
application/cache/folder/*
application/cache/folder/onemorefolder/*
!*.gitkeep

Now just create and commit empty .gitkeep files into the directories as listed above. The folder will then be tracked with those .gitkeep files but none of the contents will be tracked.

you can put a .gitignore file in each of it (like mipadi said) or make something like that on your root .gitingnore file

/assets/*/
/assets/*.*

it works fine for me

Visual Studio didn't like the accepted answer. I had to add a new line before the * to make it work.

# Ignore all files in this folder.
*
!.gitignore
标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!