How do I convince git that I really do want an empty directory?
feedback
|
|
You can't. See the Git FAQ.
| |||||||||||||||
feedback
|
|
Another way to make a directory stay empty (in the repo) is to create a .gitignore inside that directory that contains two lines:
Then you don't have to get the order right the way that you have to do in m104's solution. | |||||||||||
feedback
|
|
You could always put a README file in there with an explanation of why you want this, otherwise empty, directory in the repository. | |||||||
feedback
|
|
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
| |||
|
feedback
|
|
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. | |||||||||||||
feedback
|
|
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 ( | |||
|
feedback
|
|
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 | |||
|
feedback
|
|
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. | |||||||||
feedback
|
|
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. | |||||
feedback
|
|
I found a solution while playing with git internals! Maybe the cleanest solution, although it could be supported natively without plumbing commands.
This solution is short, works apparently fine, but is not that easy to remember... The empty tree sha1 can be found by creating a new empty git repository, | |||
|
feedback
|
|
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
| ||||
|
feedback
|
|
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. | ||||
|
feedback
|
|
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). | |||||
feedback
|
|
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. | ||||
|
feedback
|
|
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:
| |||
|
feedback
|