How do I convince git that I really do want an empty directory?
|
Another way to make a directory stay empty (in the repo) is to create a .gitignore inside that directory that contains four lines:
Then you don't have to get the order right the way that you have to do in m104's solution. |
|||||||||||||||
|
|
You can't. See the Git FAQ.
|
|||||||||||||||||
|
|
You could always put a README file in the directory with an explanation of why you want this, otherwise empty, directory in the repository. |
|||||||||||||||||
|
|
As described in other answers, git is unable to represent empty directories in its staging area. (See the git FAQ.) However, if, for your purposes, a directory is empty enough if it contains a
|
||||
|
|
|
Andy Lester is right, but if your directory just needs to be empty, and not empty empty, you can put an empty As an aside, this is an implementation issue, not a fundamental git storage design problem. As has been mentioned many times on the git mailing list, the reason that this has not been implemented is that no one has cared enough to submit a patch for it, not that it couldn’t or shouldn’t be done. |
|||||||||||||||
|
|
WARNING: This tweak is not truly working as it turns out. Sorry for the inconvenience. Original post below: I found a solution while playing with git internals!
This solution is short, works apparently fine (see the EDIT!), but is not that easy to remember... The empty tree sha1 can be found by creating a new empty git repository, EDIT: I've been using this solution since I found it. It appears to work exactly the same way as creating a submodule, except that no module is defined anywhere.
This leads to errors when issuing Moreover, any file placed under that path won't ever be noticed by git, as it thinks they belong to some other repository. This is nasty as it can easily be overlooked! However, if you don't already (and won't) use any git submodules in your repository, and the "empty" folder will remain empty or if you want git to know of its existence and ignore its content, you can go with this tweak. Going the usual way with submodules takes more steps that this tweak. |
||||
|
|
|
Maybe adding an empty directory seems like it would be the path of least resistance because you have scripts that expect that directory to exist (maybe because it is a target for generated binaries). Another approach would be to modify your scripts to create the directory as needed.
In this example, you might check in a (broken) symbolic link to the directory so that you can access it without the ".generated" prefix (but this is optional).
When you want to clean up your source tree you can just:
If you take the oft-suggested approach of checking in an almost-empty folder, you have the minor complexity of deleting the contents without also deleting the ".gitignore" file. You can ignore all of your generated files by adding the following to your root .gitignore:
|
|||
|
I've been facing the issue with empty directories, too. The problem with using placeholder files is that you need to create them, and delete them, if they are not necessary anymore (because later on there were added sub-directories or files. With big source trees managing these placeholder files can be cumbersome and error prone. This is why I decided to write an open source tool which can manage the creation/deletion of such placeholder files automatically. It is written for .NET platform and runs under Mono (.NET for Linux) and Windows. Just have a look at: http://code.google.com/p/markemptydirs Best regards and have fun with it :) Jonny Dee |
|||
|
|
|
When you add a .gitignore file, if you are going to put any amount of content in it (that you want git to ignore) you might want to add a single line with just an asterisk ( |
|||
|
|
|
Let's say you need an empty directory named tmp:
In other words, you need to add the .gitignore file to the index before you can tell Git to ignore it (and everything else in the empty directory). |
|||||
|
|
The Rails Way :
Now the log dir will be included in the tree, super-useful when deploying, so you won't have to write a routine to make log dirs. The logfiles can be kept out by issuing,
but you probably knew that |
||||
|
|
|
As mentioned it's not possible to add empty directories, but here is a one liner that adds empty .gitignore files to all directories.
I have stuck this in a Rakefile for easy access. |
|||||
|
|
I always build a function to check for my desired folder structure and build it for me within the project, this get's around this problem as the empty folders are held in git by proxy
} This is in PHP, but I am sure most languages support the same functionality, and because the creation of the folders is taken care of by the application, the folders will always be there. |
||||
|
|
|
You can save this code as create_readme.php and run the php code from the root directory of your git project.
It will add README files to all directories that are empty so those directories would be then added to the index.
Then do
|
||||
|
|
|
Put a README file in the empty directory explaining why the directory is empty. As far as git is concerned, the directory is no longer empty. To list every empty directory use the following command:
To create placeholder READMEs in every empty directory:
To ignore everything in the directory except the README file put the following lines in your
Alternatively, you could just exclude every README file from being ignored:
Note: the exclude line must be placed after the ignore line. Background: Git does not track empty directories, as stated by @Andy Lester. The suggested workaround is to put a The idea to put a README file in the empty directory was suggested by @John Mee. |
||||
|
|
|
You can't. This is an intentional design decision by the Git maintainers. Basically, the purpose of a Source Code Management System like Git is managing source code and empty directories aren't source code. Git is also often described as a content tracker, and again, empty directories aren't content (quite the opposite, actually), so they are not tracked. |
|||||||||||||||||
|
protected by Community♦ Oct 28 '12 at 21:32
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.


checkoutwith current versions of Git, however. – tiwo Jul 22 '12 at 14:18