On Mon, Jun 11, 2012 at 01:04:07PM -0400, Nicolas Pitre wrote: > > IIRC, the 2 weeks number was instored when there wasn't any reflog on > HEAD and the only way to salvage lost commits was to use 'git fsck > --lost-found'. These days, this is used only as a safety measure > because there is always a tiny window during which objects are dangling > before they're finally all referenced as you say. But someone would > have to work hard to hit that race even if the delay was only 30 > seconds. So realistically this could even be set to 1 hour. There's another useful part of the two week window, and it's as a partial workaround using .git/objects/info/alternates with one or more rewinding branches. My /usr/projects/e2fsprogs/base repo is a bare repo that contains all of my public branches, including a rewinding "pu" branch. My /usr/projects/e2fsprogs/e2fsprogs uses an alternates file to minimize disk usage, and it points at the base repo. The problem comes when I need to gc the base repo, every 3 months or so. When I do that, objects that belonged to older incarnations of the rewinding pu branch disappear. The two week window gives you a partial saving throw until development repo breaks due to objects that it depends upon disappearing. It would be nice if a gc of the devel repo knew that some of the objects it was depending on were "expired cruft", and copy them to the its local objects directory. But of course things don't work that way. Here's what I do today (please don't barf; I know it's ugly): 1) cd to the base repository; run "git repack -Adfl --window=300 --depth=100" 2) cd to the objects directory, and create my base "cruft" pack: find . --name [0-9a-f][0-9a-f] | tr -d / | git pack-objects pack- 3) hard link it into my devel repo's pack directory: ln pack-* /usr/projects/e2fsprogs/e2fsprogs/.git/objects/pack 4) to save space in my base repo, move it to the pack directory and run git prune-packed: mv pack-* pack git prune-packed 4) run "git repack -Adfl --window=300 --depth=100" in my devel repo 5) create a cruft pack in my devel repo (to save disk space): cd /usr/projects/e2fsprogs/e2fsprogs/.git/objects find . --name [0-9a-f][0-9a-f] | tr -d / | git pack-objects pack- mv pack-* pack git prune-packed This probably falls in the "don't use --shared unless you know what it does admonition in the git-clone man page. :-) Don't worry, I don't recommend that anyone *else* do this. But it works for me (although it would be nice if I made this workflow be a bit more optimized; at the very least I should make a shell script that does all this for me automatically, instead of typing all of the shell commands by hand.) - Ted -- 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