On Wednesday 19 November 2014 15:17:21 Jeff King wrote: > On Wed, Nov 19, 2014 at 08:42:19PM +0100, Peter Wu wrote: > > git remote set-url --fetch new-fetch-url > > > > This is less verbose and is much more intuitive. > > I agree your suggestion is a nicer way to do this. I'm just not sure > that this swapping is all that common an operation. If there were no > cost, I wouldn't mind. But I'm mostly concerned about the funny, > non-intuitive behavior of "git remote set-url foo" that is created by > this. It is not about swapping, but setting a new fetch while keeping the push URL intact. Likely not common, but nice to have for the times it is needed. I am sure there are other features which are not used a lot, but still exist ;) > > > would replace both the "url" _and_ "pushurl" values in the third step, > > > since we did not specify --fetch. But it is in fact identical whether > > > you run it with "--fetch" or not. That is, it creates a weirdly > > > non-orthogonal interface. > > > > Step three currently only replaces the fetch URL as an explicit push URL > > (remote.gh.pushurl) is set in step two (and therefore remote.gh.url does > > not become the implicit push URL). > > > > This might be a bug, but since it has been so long this way I was > > worried that people actually rely on this behavior. > > I don't think this is a bug. I think that "git fetch set-url" without > "--push" is a de-facto "--fetch" already. Which makes sense, as there > isn't a "--fetch" now (and the "--push" variant and "pushurl" grew after > the fact, so the "url" option serves double-duty as both the single url > and the "fetch" half). > > And that's what makes the proposed interface funny. Omitting "--fetch" > is already a de-facto "--fetch", and sometimes the two behave the same, > and sometimes differently. Calling the option "--keep-push" would be a > more accurate description, but that is rather clunky. Before this patch I did not even know that "git remote set-url name url" would have different user-visible behavior depending on whether a pushurl is set or not. In my opinion, the proposed functionality does not make the interface more confusing. Instead, the new option establish a behavior which is consistent with the existing '--push' name. (Aside, I intended to name this option "--pull" which seemed more natural given the opposite direction "--push", but decided to stay consistent with the "git remote show" terminology.) I think that your confusion is caused by the meaning of '--push' and '--fetch'. These options form a group and are not as independent as "--add". Something like "--change=[push|fetch|all]" would describe the functionality better: git remote set-url --change=fetch gh fetchurl But then the "--push" option becomes redundant. -- Kind regards, Peter https://lekensteyn.nl -- 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