Scale up as you grow — whether you're running one virtual machine or ten thousand.

From GPU-powered inference and Kubernetes to managed databases and storage, get everything you need to build, scale, and deploy intelligent applications.

This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Accepted Answer
Hi there,
Yes, indeed, by design, you can not commit empty directories, containing no files, to a Git repository.
What I usually do in such cases is to create a .gitkeep or a .gitignore file inside that directory:
- mkdir your_dir_here
.gitkeep file:- touch your_dir_here/.gitkeep
git status:Untracked files:
(use "git add <file>..." to include in what will be committed)
your_dir_here/
- git add your_dir_here/
- git commit -m "Adding Empty Directory"
The .gitkeep does not really have any special meaning for Git, but it will allow you to commit the empty directory in question!
Alternatively, you can use any other file. My advice is to be consistent throughout your project(s).
Regards, Bobby