I'm going to assume that you are not happy with cedar's ephemeral filesystem in that files gets lost every dyno reboot and are not visible cross-dyno. Accepting those constraints would obviously be the simplest solution (each dyno might have to create its own particular git repos, but that would be it).
The second most straightforward solution would be having the git log calculated elsewhere. You could write a small, webservice-like app (maybe with Sinatra) that accepted two repository urls, and returned their diff. And then you could query that from the heroku app. But I guess this is ruled out since you are asking to do it "on Heroku".
Which brings us to the last solution; it involves creating everything in memory; the initial folder would have to be created with something like FakeFS and the git control would have to be done from ruby natively; Scott Chacon's grit fork did native calls instead of shelling, so it might work (I don't know if Chacon's changes were ported to the main grit). This way all the filesystem access would be done from ruby, and everything would be in memory (you might want to upgrade your memory, by the way)
I haven't personally tried any of these, I don't know how well would they perform.
If you need persistence, maybe you can marshal the whole thing into / from your database, but that sounds like a lot of trouble.
I hope this helps.
git log --oneline --graph– Ben Taitelbaum Jul 18 '11 at 13:46