How to .gitignore all files/folder in a folder, but not the folder itself? [duplicate]
问题 This question already has answers here : Closed 7 years ago . Possible Duplicate: How do I add an empty directory to a git repository I want to check in a blank folder. How can I do this? 回答1: You can't commit empty folders in git. If you want it to show up, you need to put something in it, even just an empty file. For example, add an empty file called .gitkeep to the folder you want to keep, then in your .gitignore file write: # exclude everything somefolder/* # exception to the rule