.gitignore exclude files in directory but not certain directories

后端 未结 5 1131
刺人心
刺人心 2020-12-12 09:46
application/cache/*
application/cache/folder/*
application/cache/folder/onemorefolder/*

This doesn\'t seem to be working. When I clone the project,

相关标签:
5条回答
  • 2020-12-12 10:26

    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).

    0 讨论(0)
  • 2020-12-12 10:27

    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 ;)).

    0 讨论(0)
  • 2020-12-12 10:27

    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.

    0 讨论(0)
  • 2020-12-12 10:28

    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

    0 讨论(0)
  • 2020-12-12 10:28

    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
    
    0 讨论(0)
提交回复
热议问题