On Sat, May 23, 2009 at 8:26 PM, Chani <chanika@xxxxxxxxx> wrote: > On May 23, 2009 16:34:53 Johan Herland wrote: >> On Saturday 23 May 2009, Chani wrote: >> > I'm kinda wondering if there'd be a way to use git-filter-branch to make >> > a repo that only tracks the doc/ folder for a module - but I've no idea >> > whether it'd have to be recreated from scratch every time someone changes >> > something in the real repo's doc/ >> > >> > can anyone think of a less ugly solution? >> > what are the chances of git supporting this kind of partial checkout >> > someday? >> >> Check out git-subtree. It can split out a subdirectory into its own repo, >> and re-integrate it back into the "parent" repo at a later date. >> git-subtree has been posted as a patch to this list a couple of times >> without much response, but it looks like an interesting alternative to >> submodules: http://alumnit.ca/~apenwarr/log/?m=200904#30 > > looks interesting. might have been a solution until I heard about this > requirement to not change workflow at all. :/ Here's something that might work. Write a script that runs on a server somewhere. It checks out *all* of the git-managed KDE components, including documentation (it's okay to do this from *one* place, right?). Then it loops through all the documentation subdirectories and splits them out into individual projects/branches with 'git subtree split'. You could then make a *new* project, kde-docs for example, that pulls those new doc projects back together into a single project, using 'git subtree merge'. People could then checkout the single kde-docs project and get *all* the docs, then make changes and push them back upstream to you. As far as the average person is concerned, this is probably even easier than svn:externals - they don't have to remember to commit in each subdirectory separately, as git-subtree rips it all apart later. Also note that *end users* never have to operate the git subtree command; all that happens behind the scenes on your server. Later, you use 'git subtree split' to rip it apart back into the individual projects, and 'git subtree merge' those back into their original git repositories. Since git-subtree is my own little toy and it's designed for exactly this kind of workflow, I'd be happy to help you debug a script for this if you like. Probably I'll learn something. Disclaimer: git-subtree hasn't been used by too many people yet and we may end up finding some bugs. Have fun, Avery -- 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