From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 32691 invoked by alias); 6 Nov 2013 20:01:19 -0000 Mailing-List: contact gdb-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-owner@sourceware.org Received: (qmail 32672 invoked by uid 89); 6 Nov 2013 20:01:19 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-0.7 required=5.0 tests=AWL,BAYES_50,RDNS_NONE,URIBL_BLOCKED autolearn=no version=3.3.2 X-HELO: e28smtp07.in.ibm.com Received: from Unknown (HELO e28smtp07.in.ibm.com) (122.248.162.7) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES256-SHA encrypted) ESMTPS; Wed, 06 Nov 2013 20:00:44 +0000 Received: from /spool/local by e28smtp07.in.ibm.com with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted for from ; Thu, 7 Nov 2013 01:30:34 +0530 Received: from d28dlp01.in.ibm.com (9.184.220.126) by e28smtp07.in.ibm.com (192.168.1.137) with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted; Thu, 7 Nov 2013 01:30:31 +0530 Received: from d28relay03.in.ibm.com (d28relay03.in.ibm.com [9.184.220.60]) by d28dlp01.in.ibm.com (Postfix) with ESMTP id 39AFBE0053; Thu, 7 Nov 2013 01:32:16 +0530 (IST) Received: from d28av01.in.ibm.com (d28av01.in.ibm.com [9.184.220.63]) by d28relay03.in.ibm.com (8.13.8/8.13.8/NCO v10.0) with ESMTP id rA6K0NBh24313982; Thu, 7 Nov 2013 01:30:23 +0530 Received: from d28av01.in.ibm.com (localhost [127.0.0.1]) by d28av01.in.ibm.com (8.14.4/8.14.4/NCO v10.0 AVout) with ESMTP id rA6K0TfQ023171; Thu, 7 Nov 2013 01:30:29 +0530 Received: from [192.168.1.113] (vorma.rchland.ibm.com [9.10.86.174]) by d28av01.in.ibm.com (8.14.4/8.14.4/NCO v10.0 AVin) with ESMTP id rA6K0Pnf022860; Thu, 7 Nov 2013 01:30:27 +0530 Subject: Re: git is live From: Peter Bergner To: Andrew Pinski Cc: Tom Tromey , GDB Development , Binutils Development , Segher Boessenkool In-Reply-To: References: <877gd5iyaz.fsf@fleche.redhat.com> Content-Type: text/plain; charset="UTF-8" Date: Wed, 06 Nov 2013 20:01:00 -0000 Message-ID: <1383768024.5700.209.camel@otta> Mime-Version: 1.0 Content-Transfer-Encoding: 7bit X-TM-AS-MML: No X-Content-Scanned: Fidelis XPS MAILER x-cbid: 13110620-8878-0000-0000-000009953F40 X-SW-Source: 2013-11/txt/msg00011.txt.bz2 On Wed, 2013-11-06 at 11:41 -0800, Andrew Pinski wrote: > > git://sourceware.org/git/binutils-gdb.git > > ssh://sourceware.org/git/binutils-gdb.git > > > > I believe only the latter form allows pushing. > > When I do a git clone of the first URL I get a lot of errors: > error: refs/tags/x86_64versiong3 does not point to a valid object! > error: refs/tags/w32api-2_2 does not point to a valid object! I was seeing the same thing. It went away when I upgraded to a newer git version (I was using 1.7.1). Segher looked into and here are his comments from #gcc: in 1.6.5 an optimisation was introduced that has the server not send everything it has on any clone, but only what you ask to clone it forgot to ask for the tags it seems; it was fixed in 1.7.4 or so so affected versions end up with a clone where the objects for those tags are missing, and will error whenever you try to use them. otherwise no problem Peter