Skip to content

Latest commit

 

History

History
21 lines (13 loc) · 552 Bytes

gitkeep.md

File metadata and controls

21 lines (13 loc) · 552 Bytes

Question

Git cannot add a completely empty director, how to add empty directory to git?

Solution

Take path/to/empty-directory as an example,

$ touch path/to/empty-directory/.gitkeep
$ git add path/to/empty-directory/.gitkeep

path/to/empty-directory will be reserved by git.

If you wan't to ignore the directory, for example it's used to generate build files, add .gitkeep before add directory to .gitignore.

Referrence