How to add a Blank Directory to your Git Repository
📣 Sponsor
Sometimes in Git, we want to preserve a directory for use within a repository, but keep it empty of files. There are many reasons why you’d want to do this, but perhaps either the folder is used to store files the person cloning the repository needs to create, or a script creates custom files to put into that folder.
If we want to create a blank directory, we can do that easily, but it won’t be pushed when we use git push
to push to our remote. As such we need to do something slightly different.
Creating a blank directory in a Git Repository
The easiest way to do this is by creating a .gitignore
file within the directory you want to maintain.
- index.html
- myRepository <-- Empty directory
- myCss
--- style.css
--- main.css
We want to push myRepository
to our git repository. To do that, create a new file in myRepository
called .gitignore
. In that file, put the following code:
*
*/
!.gitignore
This will ignore all files, folder and subdirectories, but include the .gitignore
file itself. That means the file will be pushed, and we can keep the directory while not keeping any of its contents.
Next, just push your git repository as you would usually do by running the following commands:
git add .
git commit -m "Added .gitignore"
git push
Your directory will now persist in your repository, while the contents of the directory will not.
More Tips and Tricks for Git
- How to amend and update a git commit
- Git Stash - Everything about stashing changes in git
- How to make Git ignore file permission (chmod) changes
- Git Merge: Merging Changes from other Branches
- How to Auto Compress Your CSS and JS with Git Hooks
- Using Git to see recent changes in specified a time period
- Resolving Git Merge Conflicts
- Git: Renaming a Branch
- The Complete Beginners Guide to Getting Started with Git
- How to add a Blank Directory to your Git Repository