vote up 1 vote down star

When I first found out that Mercurial tracked files and not directories, I was a bit disappointed. (This means you can't represent an empty directory in the repo.) However, it doesn't seem to be an issue in practice, and makes some things a tad easier for me. How about other SCM systems? (Edit this post to add them.) What advantages or disadvantages have you found by not tracking directories? (Each one separately in an answer, please.)

Do track directories:

  • Subversion
  • Bazaar/bzr
  • (add one!)

Do NOT track directories:

  • Mercurial/hg
  • git
  • (add one!)
flag

5 Answers

vote up 2 vote down

The obvious disadvantage is you can't track empty directories. If you're leaving them as placeholders for plugins, configuration, or user data files, then you either have to come up with some dummy file convention (which you may have to write code to ignore, opening up another source of bugs and headaches), use a real example file and depend on the user to delete (which means they have to delete it after every sync with the repo), or make sure they're created as part of your installation.

(By real example file I mean a file that can be processed normally, unlike a dummy file, but doesn't do anything.)

link|flag
being unable to track empty directories can be the difference between "checkout = ready to use" and "checkout, then run the appropriate script for your platform which I will carefully maintain for you". – Zac Thompson Oct 28 at 5:02
vote up 1 vote down

This is from the Mercurial book:

Empty directories are rarely useful, and there are unintrusive workarounds that you can use to achieve an appropriate effect. The developers of Mercurial thus felt that the complexity that would be required to manage empty directories was not worth the limited benefit this feature would bring.

I think it pretty much says it all. If you design a VCS, you make some decisions. In Mercurial's case, the decisions on file handling (that per se can probably be considered good) lead to this small caveat.

It can definitely be considered a flaw, however a small one. Other VCSs have other flaws coming from other decisions (the constantly needed cleanup operations in git, for example, that don't make git worth any less).

link|flag
I know there are tradeoffs. This question is about finding out how those tradeoffs affect real users in real projects. The nature of SO means we can see which issues affect (or at least are important to) this community more (by votes). – Roger Pate Jul 3 at 17:21
That's fine, and my answer will probably stay on the bottom. I'm totally okay with that, I just thought it was good to point out. I know it's not a real answer to your question, but it's a CW, so I took the freedom :-) – balpha Jul 3 at 17:25
Thanks for participating, just didn't want you to misunderstand the question if you took the time to answer. :) – Roger Pate Jul 3 at 17:29
vote up 1 vote down

No surprise that git doesn't do empty directories. It did surprise me that bzr does track them however.

An easy workaround that has been with us since CVS days is to create a placeholder file in the directory and track that. Alternatively you can create the empty directory in the build process, which is almost always the right thing to do anyway.

link|flag
vote up 0 vote down

Renaming a directory means renaming every file in it (all the way down every subdirectory). But at least if your SCM supports renaming files (hg does at least, I believe git does it indirectly through tracking file contents), then you have a record of what happened.

link|flag
vote up 0 vote down

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.

link|flag

Your Answer

Get an OpenID
or

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