Re: Please undo "Use git-merge instead of git-resolve in
From: Petr Baudis <hidden>
Date: 2016-06-15 22:42:07
Dear diary, on Thu, Sep 22, 2005 at 09:25:34PM CEST, I got a letter where Sean [off-list ref] told me that...
On Thu, September 22, 2005 3:10 pm, Petr Baudis said:quoted
FWIW, with Cogito, interrupted or failed fetch can be safely rerun, no extra recovery procedure is required. It *seems* that this holds for git-fetch as well.Petr, Why doesn't cogito just use the git fetch/pull commands? Why does it need anything special? It seems like cogito is doing more than just being an ease-of-use layer above git.
As Junio already explained, Cogito had those commands earlier - so the main reason was simply that I didn't manage to do it yet. It is not so easy to keep up with the latest GIT stuff _and_ enhance Cogito at the same time, so I simply didn't get to really consider that yet. :-) That said, this is a non-comprehensive list of the factors in my consideration: Pros (not so much of them, but they are big): * Already supports alternates and remotes * Do it once, stop caring :-) - only single instance of the code does the stuff (this is obviously the motivation) Cons: * cg-fetch can do with symlinked object database * cg-fetch will hardlink if possible when fetching locally * cg-fetch will fetch the tags if possible (this is actually a bit controversial - we should have the private/public tags distinction, that's another thing I simply didn't get to yet) * cg-fetch has cute progress info (perhaps git-fetch output could be just fed to that) * cg-fetch won't do useless fetches when we are already up-to-date * I'm not sure if I could call git-fetch to do the initial fetch during clone * The amount of work to initially convert it might be comparable with implementing the current new stuff * I really dislike the git-fetch coding style This is not that I'd like to force my coding style customs on anyone and Junio might well feel the same about Cogito's code, but I would have to support and fix bugs in git-fetch if I used it. * I'm obviously not too happy to throw away the rather big amount of code I spent a lot of time on and which is already pretty well debugged and tuned, I think (that's not to say that git-fetch is buggy... ;-) The cons may seem mostly minor stuff which is quite fixable, and that's right, it's just show that there is plenty of stuff to do before git-fetch will be superset of cg-fetch. Now because of the coding style, I might as well just implement the alternates and remotes stuff to cg-fetch, which would be less work and less painful for me in the short term. I'll convert cg-object-id to use git-rev-parse after the release so that you can't say I'm an old-fashioned freak refusing to use any of the new GIT stuff. :^) -- Petr "Pasky" Baudis Stuff: http://pasky.or.cz/ VI has two modes: the one in which it beeps and the one in which it doesn't.