DevOps / GIT Interview Questions
What is a .GITKEEP file?
A GITKEEP file is an empty file that GIT users create so that a Git repository preserves an empty project directory. Otherwise, git cannot preserve the empty directory as it tracks by files. By convention, empty directories that contain no files are not committed to Git repositories. However, a single GITKEEP file in a directory causes Git to preserve the directory in the repository.
More Related questions...