Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

How do I convince git that I really do want an empty directory?

share|improve this question
2  
While it's not useful, there is a way to hack an empty (really empty) directory into your repo. It won't checkout with current versions of Git, however. – tiwo Jul 22 '12 at 14:18
25  
'it's not useful', in your opinion only, tiwo. that doesn't make it true. – njzk2 Jan 18 at 14:40
13  
@tiwo I for one disagree that it's not useful. Your directory hierarchy is part of your project, so it should be version controlled. – JBentley Jan 29 at 20:19
1  
@JonBentley sure you are right! It's a pity that git fails to respect this part - but as long as this isn't fixed, it is useless to have empty directories in a repository (note that git ignores empty directories when checking out as well) – tiwo Feb 5 at 22:35
5  
In my case, I'd like to add a directory structure for tmp files, but not the tmp files themselves. By doing this, my tester has the correct structure (otherwise there are errors) but I don't clog my commits with tmp data. So yes, it's useful to me! – Adam Marshall Mar 13 at 3:32
show 1 more comment

17 Answers

up vote 790 down vote accepted

Another way to make a directory stay empty (in the repo) is to create a .gitignore inside that directory that contains four lines:

# Ignore everything in this directory
*
# Except this file
!.gitignore

Then you don't have to get the order right the way that you have to do in m104's solution.

share|improve this answer
1  
@Jamie Flournoy - I hesitated to edit such an upvoted answer, but it took me a second to understand what you meant. Would you please verify that my edit is correct and helpful? – Nathan Long Sep 30 '11 at 15:32
11  
I think it's worth noting that this solution does precisely what the question asked for, but is not perhaps what many people looking at this question will have been looking for. This solution guarantees that the directory remains empty. It says "I truly never want files checked in here". As opposed to "I don't have any files to check in here, yet, but I need the directory here, files may be coming later". – GreenAsJade Dec 29 '12 at 1:05
1  
I think the README solution proposed by @JohnMee should be used together with this one; the .gitignore file provides an explanation of what we want to keep out of version control, while the README file explains what is the purpose of the directory, which are both very important pieces of information. – pedromanoel Jan 17 at 11:11
caveat emptor, buyer beware – randomstring Apr 26 at 2:46

You can't. See the Git FAQ.

Currently the design of the git index (staging area) only permits files to be listed, and nobody competent enough to make the change to allow empty directories has cared enough about this situation to remedy it.

Directories are added automatically when adding files inside them. That is, directories never have to be added to the repository, and are not tracked on their own.

You can say "git add <dir>" and it will add files in there.

If you really need a directory to exist in checkouts you should create a file in it. .gitignore works well for this purpose; you can leave it empty, or fill in the names of files you expect to show up in the directory.

share|improve this answer
61  
I nominate this for best FAQ entry ever. – Glen Mar 2 '11 at 1:58
14  
Below answer is MUCH better. The fact that git the low level software doesn't allow it doesn't matter to me as much as HOW to actually use Git when I need an empty directory. Adding a 2 line .gitignore seems acceptable to me. – Amala Apr 26 '11 at 15:21
1  
Well if one want to move files into a new directory, they can't do it through git mv as git will complain that new directory is not under version control – lulalala Nov 2 '11 at 2:58
4  
You can read "it's impossible, you can't, etc." all over the Internet for this frequent question. The .gitignore trick is a frequent answer, and satisfies many needs. However it IS possible to make git track an truly empty directory, see my answer – TeKa Jan 21 '12 at 15:44

You could always put a README file in the directory with an explanation of why you want this, otherwise empty, directory in the repository.

share|improve this answer
6  
+1, Good suggestion, an empty directory does not make any sense unless it is going to be used in the future. So create a README file inside it and write what this directory is for, and what files will be put there in the future. That solves both two problems. – ilius Apr 4 '11 at 12:08
I agree. Empty folders are annoying and should be explained in all properly handled repositories of any kind. – Sold Out Activist Aug 25 '11 at 3:37
7  
@ilius Nonsense. A directory structure containing empty directories may be highly desirable in many situations (like an MVC app where you want a models directory but haven't gotten around to creating any models yet, or a shared views directory you plan to add shared views to, later). Moreover, putting a README in each one of these is overkill as it's obvious what they're there for, and it's easy to forget to put a README in each one of them. AND you have to remember to remove the README when you add some other files to them. Basically, git should definitely allow empty directories. – Jez Nov 21 '12 at 11:35
:s/empty/non-existent – desert69 Nov 27 '12 at 19:34
@Jez: I disagree. The point is that git is designed to control (and index) source-code. Importantly, the id of a commit is a hash of the contents. That is to say, it must have contents. You don't need a README in every part of the tree, only leaf nodes. If you have places you intend to put code, but no code, and you won't even take the time to echo "place for models" >> README, then what you have is an idea not a commit. It is not of interest to git. Saying "I want the running app to have XYZ empty directories" is a runtime problem, not a source problem. Handle it w/ your installer. – Joe Atzberger 2 days ago

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 .gitignore file only, then you can create .gitignore files in empty directories only via:

find . -type d -empty -exec touch {}/.gitignore \;
share|improve this answer

Andy Lester is right, but if your directory just needs to be empty, and not empty empty, you can put an empty .gitignore file in there as a workaround.

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.

share|improve this answer
3  
That's exactly what I said. Both paragraphs are addressed in the snippet of FAQ I posted. – Andy Lester Sep 22 '08 at 17:36
1  
I think the aside is unteresting and useful to know -- it can be fixed, just don't expect it anytime soon when there's such an easy workaround for most cases. – wnoise Sep 22 '08 at 22:10
Sorry, I didn’t read the last paragraph, and while I did read the first paragraph, well, I’m not sure why I repeated that information. – Aristotle Pagaltzis Sep 23 '08 at 7:37
1  
Of course, this extra answer does serve to point out the fact. – Michael Johnson Sep 24 '08 at 6:44

I think you can try to use .gitkeep

share|improve this answer

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!

  1. Suppose you are in your repository.
  2. Create your empty directory:

    $ mkdir path/to/empty-folder
    
  3. Add it to the index using a plumbing command and the empty tree SHA1:

    $ git update-index --index-info
    040000 tree 4b825dc642cb6eb9a060e54bf8d69288fbee4904    path/to/empty-folder
    

    Type the command then enter the second line, press enter then Ctrl+D to terminate your input. Note: the format is mode [SPACE] type [SPACE] sha1hash [TAB] path (the tab is important, the answer formatting does not preserve it).

  4. That's it! Your empty folder is in your index. All you have to do is commit.

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, cd into it and issue git write-tree, which outputs the empty tree sha1.

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 git submodule init|update. The problem is that git update-index rewrites the 040000 tree part into 160000 commit.

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.

share|improve this answer

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

share|improve this answer

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.

mkdir --parents .generated/bin ## create a folder for storing generated binaries
mv myprogram1 myprogram2 .generated/bin ## populate 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).

ln -sf .generated/bin bin
git add bin

When you want to clean up your source tree you can just:

rm -rf .generated ## this should be in a "clean" script or in a makefile

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:

.generated
share|improve this answer
Note: The symbolic link that I suggested is "broken" in a clean checkout because the .generated directory does not initially exist. It will no longer be broken once you do your build. – nobar Mar 14 '12 at 0:14
+1 for the generic good prectice of making your code robust – PPC Apr 23 at 22:01

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 (*) to make sure you don't add the ignored content accidentally.

share|improve this answer

Let's say you need an empty directory named tmp:

$ mkdir tmp
$ touch tmp/.gitignore
$ git add tmp
$ echo '*' > tmp/.gitignore
$ git commit -m 'Empty directory' 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).

share|improve this answer
6  
Two things: You could just "echo '*' > tmp/.gitignore" instead of touching, and "git commit -m" does not commit changes done after you've added the files to the index. – Christoffer Hammarström Jan 28 '10 at 15:50

The Rails Way :

mkdir log && touch log/.gitkeep && git add log/.gitkeep

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,

echo log/dev.log >> .gitignore

but you probably knew that

share|improve this answer

As mentioned it's not possible to add empty directories, but here is a one liner that adds empty .gitignore files to all directories.

ruby -e 'require "fileutils" ; Dir.glob(["target_directory","target_directory/**"]).each { |f| FileUtils.touch(File.join(f, ".gitignore")) if File.directory?(f) }'

I have stuck this in a Rakefile for easy access.

share|improve this answer
4  
I'd rather use find . -type d -empty -print0 | xargs --null bash -c 'for a; do { echo "*"; echo "!.gitignore"; } >>"$a/.gitignore"; done' -- – Tino Oct 21 '11 at 6:35

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

function check_page_custom_folder_structure (){
if (!is_dir(TEMPLATEPATH."/page-customs")) mkdir(TEMPLATEPATH."/page-customs"); 
if (!is_dir(TEMPLATEPATH."/page-customs/css")) mkdir(TEMPLATEPATH."/page-customs/css");
if (!is_dir(TEMPLATEPATH."/page-customs/js")) mkdir(TEMPLATEPATH."/page-customs/js");

}

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.

share|improve this answer

You can save this code as create_readme.php and run the php code from the root directory of your git project.

> php create_readme.php

It will add README files to all directories that are empty so those directories would be then added to the index.

<?php
    $path = realpath('.');
    $objects = new RecursiveIteratorIterator(new RecursiveDirectoryIterator($path),       RecursiveIteratorIterator::SELF_FIRST);
    foreach($objects as $name => $object){
        if ( is_dir($name) && ! is_empty_folder($name) ){
            echo "$name\n" ;
            exec("touch ".$name."/"."README");
        }
    }

    function is_empty_folder($folder) {
    $files = opendir($folder);
    while ($file = readdir($files)) {
        if ($file != '.' && $file != '..')
            return true; // not empty
        }
    }
?>

Then do

git commit -m "message"
git push
share|improve this answer

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:

find -not -path "*/.git/*" -type d -empty

To create placeholder READMEs in every empty directory:

find -not -path "*/.git/*" -type d -empty -exec sh -c "echo this directory is intentionally left empty > {}/README.emptydir" \;

To ignore everything in the directory except the README file put the following lines in your .gitignore:

path/to/emptydir/*
!path/to/emptydir/README.emptydir
path/to/otheremptydir/*
!path/to/otheremptydir/README.emptydir

Alternatively, you could just exclude every README file from being ignored:

path/to/emptydir/*
path/to/otheremptydir/*
!README.emptydir

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 .gitignore file in the empty directory. @Jamie Flournoy refined the idea to ignore everything except for the .gitignore file itself. I do not like this solution because there are "ignore everything"-rules scattered all over the place. Also there is no explanation why the directories are empty.

The idea to put a README file in the empty directory was suggested by @John Mee.

share|improve this answer

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.

share|improve this answer
16  
I contest this view. Structure is content, and everything you name contributes to content. – ThomasH Aug 11 '11 at 12:08
10  
An empty file isn't source code or content either. It's just a name. Yet Git will happily track empty files. I don't think it was an intentional design decision to make Git refuse to track empty directories. I think tracking empty directories is a feature that simply isn't needed 99% of the time, so they didn't bother to do the extra work required to make it work properly. Git can do it if someone wants the feature badly enough to implement it. I doubt the Git maintainers would be opposed to such a patch if it were done correctly. – Dan Moulding Sep 13 '11 at 15:32
2  
That statement is clearly not what is expressed in the FAQ – Daniel Da Cunha May 2 '12 at 8:00
@DanielDaCunha dead link – Toby Allen Apr 3 at 7:16
@TobyAllen here is the updated FAQ link The top answer is also what is recommended by the FAQ with more precise instructions. – Daniel Da Cunha Apr 12 at 7:22

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.

Not the answer you're looking for? Browse other questions tagged or ask your own question.