On Mon, May 09, 2011 at 09:45:49AM -0700, Junio C Hamano wrote: > Jeff King <peff@xxxxxxxx> writes: > > > 4. Decentralized, you're a developer that publishes work via git. You > > call the upstream maintainer "origin", so fetches are convenient > > (and git does this for you at clone, after all). But pushing, even > > though you probably always push to the same central, does not have > > a convenient shorthand. > > > > This is David's case (and mine, and I suspect some other git > > developers who do enough work that they want to make it publicly > > available via git, or even just have backups). It's also encouraged > > by sites like github, where you might clone the upstream's > > repository, but then pushes your changes up to a personal "fork" > > to let others see and merge them. > > In a sense, this is what I do as well. As you mentioned, I push to "ko" > to publish, but when I "fetch" (or "pull") from "origin", I get the public > copy I have at kernel.org like everybody else, and I do fetch every time > after I push to "ko" to get the updated preformatted HTML and man page > branches. Interesting. Is your fetch from "ko" a no-op, or are you using it to syncrhonize development between different machines? > While I see why some people might want to say "origin" for both in such a > set-up (when they do not push to multiple places like I do), I have a > feeling that it is a misguided wish that would make themselves unnecessary > confused than they already are, especially if the repositories used for > pushing and fetching are in reality different repositories (one good > example why it would be confusing is how remote tracking branches are > updated). I think it is important to note that calling them both "origin" is definitely the wrong thing. The proposal is instead that "git push" without a remote would default to something besides "origin". For people who publish multiple places, it might even make sense for it to be an iterative push to each place. But this is all definitely a minor convenience. It is not that world-shattering to type "git push my-fork", nor "git push my-fork && git push my-backup". Probably twice a week I accidentally try to push to "git://git.kernel.org/pub/scm/git/git.git", but git make it clear that is not allowed. :) -Peff -- 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