From mboxrd@z Thu Jan 1 00:00:00 1970 From: Johan Herland Subject: [PATCH 5/5] branch.c: Relax unnecessary requirement on upstream's remote ref name Date: Fri, 6 Sep 2013 12:40:42 +0200 Message-ID: <1378464042-17476-6-git-send-email-johan@herland.net> References: <1378464042-17476-1-git-send-email-johan@herland.net> Cc: Per Cederqvist , git@vger.kernel.org, Johan Herland To: gitster@pobox.com X-From: git-owner@vger.kernel.org Fri Sep 06 12:41:40 2013 Return-path: Envelope-to: gcvg-git-2@plane.gmane.org Received: from vger.kernel.org ([209.132.180.67]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1VHtTu-00009X-32 for gcvg-git-2@plane.gmane.org; Fri, 06 Sep 2013 12:41:38 +0200 Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751286Ab3IFKla (ORCPT ); Fri, 6 Sep 2013 06:41:30 -0400 Received: from mail-lb0-f173.google.com ([209.85.217.173]:56576 "EHLO mail-lb0-f173.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751138Ab3IFKlY (ORCPT ); Fri, 6 Sep 2013 06:41:24 -0400 Received: by mail-lb0-f173.google.com with SMTP id o14so2709698lbi.32 for ; Fri, 06 Sep 2013 03:41:23 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=from:to:cc:subject:date:message-id:in-reply-to:references; bh=TJgDfXEm57Cw3othBuDNRjgugLOjJPjplNgrCM6EOvA=; b=Uid6agB85k3s1FALqWPCnrVvTg3Pl4yVBMAyWTkzZOItSDzG8/aG83P79PfRH73iBv ObsyjbWE9qCHZJzA3kGq4yKPW4bf6pcOPyd0FPvgrdPGNzUAuno0HMtpSsq7CLC2gDD3 ApLTLyZZZXcs+s1Kav0Ob/J4duvUKNywAaD3ujyWrIOo9e4qMGWAmhYrF6q0Afac2noZ 5/+pV+YL4VVPbfclVwWpPAA3VnsNzPa57yR1SKLT9yD3lohTtc3x/YR5KW/bNR1lfzXH lwOOsnpcQTDw8cS24N5MRsLlITNIZMGcM2j0aHqvrm9zjgmc92BQWAAoWOQ/lbe3Rdx3 MpiQ== X-Received: by 10.152.6.97 with SMTP id z1mr1703202laz.26.1378464082996; Fri, 06 Sep 2013 03:41:22 -0700 (PDT) Received: from localhost.localdomain (c80-216-222-129.bredband.comhem.se. [80.216.222.129]) by mx.google.com with ESMTPSA id vs11sm1000794lac.3.1969.12.31.16.00.00 (version=TLSv1.2 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Fri, 06 Sep 2013 03:41:22 -0700 (PDT) X-Mailer: git-send-email 1.8.3.GIT In-Reply-To: <1378464042-17476-1-git-send-email-johan@herland.net> Sender: git-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: git@vger.kernel.org Archived-At: From: Per Cederqvist When creating an upstream relationship, we use the configured remotes and their refspecs to determine the upstream configuration settings branch..remote and branch..merge. However, if the matching refspec does not have refs/heads/ on the remote side, we end up rejecting the match, and failing the upstream configuration. It could be argued that when we set up an branch's upstream, we want that upstream to also be a proper branch in the remote repo. Although this is typically the common case, there are cases (as demonstrated by the previous patch in this series) where this requirement prevents a useful upstream relationship from being formed. Furthermore: - We have fundamentally no say in how the remote repo have organized its branches. The remote repo may put branches (or branch-like constructs that are insteresting for downstreams to track) outside refs/heads/*. - The user may intentionally want to track a non-branch from a remote repo, by using a branch and configured upstream in the local repo. Relaxing the checking to only require a matching remote/refspec allows the testcase introduced in the previous patch to succeed, and has no negative effect on the rest of the test suite. This patch fixes a behavior (arguably a regression) first introduced in 41c21f2 (branch.c: Validate tracking branches with refspecs instead of refs/remotes/*) on 2013-04-21 (released in >= v1.8.3.2). Signed-off-by: Johan Herland --- FTR, Per made the original fix, and I supplied the commit message. ...Johan branch.c | 3 +-- t/t3200-branch.sh | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/branch.c b/branch.c index c5c6984..2d15c19 100644 --- a/branch.c +++ b/branch.c @@ -203,8 +203,7 @@ static int check_tracking_branch(struct remote *remote, void *cb_data) struct refspec query; memset(&query, 0, sizeof(struct refspec)); query.dst = tracking_branch; - return !(remote_find_tracking(remote, &query) || - prefixcmp(query.src, "refs/heads/")); + return !remote_find_tracking(remote, &query); } static int validate_remote_tracking_branch(char *ref) diff --git a/t/t3200-branch.sh b/t/t3200-branch.sh index 4031693..f010303 100755 --- a/t/t3200-branch.sh +++ b/t/t3200-branch.sh @@ -871,7 +871,7 @@ test_expect_success '--merged catches invalid object names' ' test_must_fail git branch --merged 0000000000000000000000000000000000000000 ' -test_expect_failure 'tracking with unexpected .fetch refspec' ' +test_expect_success 'tracking with unexpected .fetch refspec' ' git init a && ( cd a && -- 1.8.3.GIT