Re: [RFC/PATCH 3/3] push: add separate 'downstream' branch
From: Felipe Contreras <hidden>
Date: 2016-06-15 22:57:17
On Thu, May 16, 2013 at 4:20 AM, Ramkumar Ramachandra [off-list ref] wrote:
Felipe Contreras wrote:quoted
And is going to change soon.Your point being? How will this patch interact with push.default = matching?quoted
quoted
branch.<name>.push should probably be named branch.<name>.downstreamref and be used only for informational purposes (@{d} and git status)?That makes absolutely no sense.I said downstreamref, not downstreamrefspec.
That's not consistent with branch.A.merge, which is not named branch.A.upstreamref.
quoted
[branch "master"] remote = origin merge = refs/heads/master pushremote = github push = refs/heads/fc/master [branch "fc/old-remote/hg"] remote = . merge = refs/heads/master pushremote = github push = refs/heads/fc/remote/hg Tell me how you express that without 'remote.branch.push'.[remote "origin"] push = refs/heads/master:refs/heads/fc/master [remote "."] push = refs/heads/fc/old-remote/hg:refs/heads/fc/remote/hg
Let's see: % git checkout master % git push It will try to push to 'origin/fc/master' not 'github/fc/master', which is what I intended. % git checkout fc/old-remote/hg % git push It will try to push to 'fc/remote/hg' not 'github/fc/remote/hg', which is what I intended.
Advantage being you can do:
[remote "origin"]
push = refs/heads/*:refs/for/*
While you can't with branch.<name>.push.But I can do 'git push origin "refs/head/*:refs/heads/for/*"', not that I've ever had the need to do something like that, so I don't care. -- Felipe Contreras