From mboxrd@z Thu Jan 1 00:00:00 1970 From: Karthik Nayak Subject: [PATCH v3 5/8] branch: drop non-commit error reporting Date: Sat, 22 Aug 2015 12:21:46 +0530 Message-ID: <1440226309-25415-6-git-send-email-Karthik.188@gmail.com> References: <1440226309-25415-1-git-send-email-Karthik.188@gmail.com> Cc: christian.couder@gmail.com, Matthieu.Moy@grenoble-inp.fr, gitster@pobox.com, Karthik Nayak , Karthik Nayak To: git@vger.kernel.org X-From: git-owner@vger.kernel.org Sat Aug 22 08:52:05 2015 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 1ZT2ep-0004MV-5B for gcvg-git-2@plane.gmane.org; Sat, 22 Aug 2015 08:52:03 +0200 Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752846AbbHVGv6 (ORCPT ); Sat, 22 Aug 2015 02:51:58 -0400 Received: from mail-pa0-f54.google.com ([209.85.220.54]:35463 "EHLO mail-pa0-f54.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752479AbbHVGv4 (ORCPT ); Sat, 22 Aug 2015 02:51:56 -0400 Received: by pacdd16 with SMTP id dd16so58869935pac.2 for ; Fri, 21 Aug 2015 23:51:56 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id:in-reply-to:references; bh=S6LbIgYBnRoKZryXXX175pDpmni3RmXRx+T+14ceuWo=; b=VlO+okj9/LwxovMP+YvsseTqWHLJ/zNDRnOFuuxzOtDqz+TbIFgxYdWmY7zJmh9nfe gZw2SHZh9eX5shNGlMYRh9hmcSeYVwLSrVFbsSgeSjs0MdvAWitYCy7C1awEw17qB2ji hYFLwIjNytCtnLyW08nL1bX8mIr/Ca2638BQtpj9hSSQ1elpk9z3V2x1LiZN9biGRn6H CtULlmV26cTl5aFn8qkdzh7xTgPqP/ELbPcvWWOHiCi07qSOwKCYHhlhLkI3p+2KG7Hx jEj8NVcMWl2glc7x8M6zHCSxso8ErUJ917IEu9QcT9scpbsgGAjWMPdX0mh+7esEQKXF dYfw== X-Received: by 10.68.143.70 with SMTP id sc6mr24852934pbb.87.1440226315855; Fri, 21 Aug 2015 23:51:55 -0700 (PDT) Received: from ashley.localdomain ([106.51.130.23]) by smtp.gmail.com with ESMTPSA id hy5sm4412342pac.22.2015.08.21.23.51.53 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Fri, 21 Aug 2015 23:51:55 -0700 (PDT) X-Google-Original-From: Karthik Nayak X-Mailer: git-send-email 2.5.0 In-Reply-To: <1440226309-25415-1-git-send-email-Karthik.188@gmail.com> Sender: git-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: git@vger.kernel.org Archived-At: Remove the error reporting variable to make the code easier to port over to using ref-filter APIs. This variable is not required as in ref-filter we already check for possible errors and report them. Based-on-patch-by: Jeff King Mentored-by: Christian Couder Mentored-by: Matthieu Moy Signed-off-by: Karthik Nayak --- builtin/branch.c | 18 ++++-------------- 1 file changed, 4 insertions(+), 14 deletions(-) diff --git a/builtin/branch.c b/builtin/branch.c index 4d9e4d0..8b9da60 100644 --- a/builtin/branch.c +++ b/builtin/branch.c @@ -313,7 +313,6 @@ static char *resolve_symref(const char *src, const char *prefix) struct append_ref_cb { struct ref_list *ref_list; const char **pattern; - int ret; }; static int match_patterns(const char **pattern, const char *refname) @@ -370,10 +369,8 @@ static int append_ref(const char *refname, const struct object_id *oid, int flag commit = NULL; if (ref_list->verbose || ref_list->with_commit || merge_filter != NO_FILTER) { commit = lookup_commit_reference_gently(oid->hash, 1); - if (!commit) { - cb->ret = error(_("branch '%s' does not point at a commit"), refname); + if (!commit) return 0; - } /* Filter with with_commit if specified */ if (!is_descendant_of(commit, ref_list->with_commit)) @@ -617,7 +614,7 @@ static int calc_maxwidth(struct ref_list *refs, int remote_bonus) return max; } -static int print_ref_list(int kinds, int detached, int verbose, int abbrev, struct commit_list *with_commit, const char **pattern) +static void print_ref_list(int kinds, int detached, int verbose, int abbrev, struct commit_list *with_commit, const char **pattern) { int i, index; struct append_ref_cb cb; @@ -642,7 +639,6 @@ static int print_ref_list(int kinds, int detached, int verbose, int abbrev, stru init_revisions(&ref_list.revs, NULL); cb.ref_list = &ref_list; cb.pattern = pattern; - cb.ret = 0; /* * First we obtain all regular branch refs and if the HEAD is * detached then we insert that ref to the end of the ref_fist @@ -702,11 +698,6 @@ static int print_ref_list(int kinds, int detached, int verbose, int abbrev, stru abbrev, detached, remote_prefix); free_ref_list(&ref_list); - - if (cb.ret) - error(_("some refs could not be read")); - - return cb.ret; } static void rename_branch(const char *oldname, const char *newname, int force) @@ -922,15 +913,14 @@ int cmd_branch(int argc, const char **argv, const char *prefix) die(_("branch name required")); return delete_branches(argc, argv, delete > 1, kinds, quiet); } else if (list) { - int ret; /* git branch --local also shows HEAD when it is detached */ if (kinds & REF_LOCAL_BRANCH) kinds |= REF_DETACHED_HEAD; - ret = print_ref_list(kinds, detached, verbose, abbrev, + print_ref_list(kinds, detached, verbose, abbrev, with_commit, argv); print_columns(&output, colopts, NULL); string_list_clear(&output, 0); - return ret; + return 0; } else if (edit_description) { const char *branch_name; -- 2.5.0