Junio C Hamano wrote: > --- a/builtin/push.c > +++ b/builtin/push.c > @@ -65,6 +65,16 @@ static void set_refspecs(const char **refs, int nr) [...] > @@ -87,6 +97,11 @@ static void setup_push_upstream(struct remote *remote) > 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 your\ncurrent branch '%s'.\n"), > + remote->name, branch->name); > + I worry that a beginner seeing this message would think it means that when "master" is set up to track origin/master that there is no way to push that branch to any other repository. Maybe something like die(_( "You are pushing to remote '%s', which is not the upstream of your\n" "current branch '%s', without specifying a refspec.\n"), remote->name, branch->name); would be harder to misunderstand. -- 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