Thomas Jarosch <thomas.jarosch@xxxxxxxxxxxxx> wrote: > Hello Eric and Deskin, > > I'm currently looking into preserving empty directories from a SVN repository > by automatically creating empty .gitignore files for them. > > The control flow of the git-svn code is still a jungle to me, > maybe you have a hint how to implement a proof-of-concept code? > > I don't think I can just touch a .gitignore file in get_untracked() > and those files will magically turn up in git's index... Hi Thomas, Modern git-svn never touches the working tree during fetch, it hashes objects into the database and adds those to the indexes directly. However, I don't think your proposal is a good idea since it adds too much "magic". Complex special cases for delta application if the .gitignore gets real content and backwards-incompatibility since I know some git-svn users already rely on pushing .gitignore files (empty or otherwise) to an upstream SVN repo. The minor problem of missing empty directories isn't big enough to be worth the trouble IMHO. The unhandled.log is made to be machine parseable, so if somebody really wanted to recreate empty direct after checkout, they could write a script that parses it and creates it based on the history of the current working tree. -- Eric Wong -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html