rr/triangle (4d35924, 2013-04-07) introduced support for triangular workflows, but did not think through the effect of the new configuration variables in the upstream and simple modes. When remote.pushdefault or branch.<name>.pushremote is set, and push.default is set to upstream or simple, this happens (master@{u} != origin): $ git push fatal: You are pushing to remote 'origin', which is not the upstream of your current branch 'master', without telling me what to push to update which remote branch. The configuration variables work as expected with push.default = current and matching, which makes the above unexpected and counter-intuitive. It happens because upstream and simple were designed with central workflows in mind. Even when these configuration variables are not set, $ git push origin fatal: You are pushing to remote 'origin', which is not the upstream of your current branch 'master', without telling me what to push to update which remote branch. This artificial limitation imposed on setup_push_upstream() was introduced by 135dad (push: error out when the "upstream" semantics does not make sense, 2012-03-30), but has no basis; a push.default value should only dictate a refspec, and the push destination is orthogonal to this. Remove this artificial limitation, fixing the bug. Only one test needs to be changed subtly. Reported-by: Leandro Lucarella <leandro.lucarella@xxxxxxxxxxxxxxx> Signed-off-by: Ramkumar Ramachandra <artagnon@xxxxxxxxx> --- builtin/push.c | 5 ----- t/t5528-push-default.sh | 4 ++-- 2 files changed, 2 insertions(+), 7 deletions(-) diff --git a/builtin/push.c b/builtin/push.c index 2d84d10..b253a64 100644 --- a/builtin/push.c +++ b/builtin/push.c @@ -137,11 +137,6 @@ static void setup_push_upstream(struct remote *remote, int simple) if (branch->merge_nr != 1) die(_("The current branch %s has multiple upstream branches, " "refusing to push."), branch->name); - if (strcmp(branch->remote_name, remote->name)) - die(_("You are pushing to remote '%s', which is not the upstream of\n" - "your current branch '%s', without telling me what to push\n" - "to update which remote branch."), - remote->name, branch->name); if (simple && strcmp(branch->refname, branch->merge[0]->src)) die_push_simple(branch, remote); diff --git a/t/t5528-push-default.sh b/t/t5528-push-default.sh index 69ce6bf..4e4824e 100755 --- a/t/t5528-push-default.sh +++ b/t/t5528-push-default.sh @@ -60,13 +60,13 @@ test_expect_success '"upstream" does not push on unconfigured branch' ' test_push_failure upstream ' -test_expect_success '"upstream" does not push when remotes do not match' ' +test_expect_success '"upstream" pushes when remotes do not match' ' git checkout master && test_config branch.master.remote parent1 && test_config branch.master.merge refs/heads/foo && test_config push.default upstream && test_commit five && - test_must_fail git push parent2 + git push parent2 ' test_expect_success 'push from/to new branch with upstream, matching and simple' ' -- 1.8.3.247.g485169c -- 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