From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 29768 invoked by alias); 18 Aug 2014 18:45:11 -0000 Mailing-List: contact insight-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: insight-owner@sourceware.org Received: (qmail 29752 invoked by uid 89); 18 Aug 2014 18:45:09 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.2 required=5.0 tests=AWL,BAYES_00,RP_MATCHES_RCVD,SPF_HELO_PASS,SPF_PASS autolearn=ham version=3.3.2 X-HELO: mx1.redhat.com Received: from mx1.redhat.com (HELO mx1.redhat.com) (209.132.183.28) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES256-GCM-SHA384 encrypted) ESMTPS; Mon, 18 Aug 2014 18:45:08 +0000 Received: from int-mx14.intmail.prod.int.phx2.redhat.com (int-mx14.intmail.prod.int.phx2.redhat.com [10.5.11.27]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id s7IIitOo005879 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=OK); Mon, 18 Aug 2014 14:44:55 -0400 Received: from valrhona.uglyboxes.com (ovpn01.gateway.prod.ext.phx2.redhat.com [10.5.9.1]) by int-mx14.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id s7IIirqd026927 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES128-SHA bits=128 verify=NO); Mon, 18 Aug 2014 14:44:54 -0400 Message-ID: <53F249A5.3020102@redhat.com> Date: Mon, 18 Aug 2014 18:45:00 -0000 From: Keith Seitz User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:24.0) Gecko/20100101 Thunderbird/24.7.0 MIME-Version: 1.0 To: Patrick Monnerat , insight Subject: Re: A git repository for insight References: <53EE86A8.6070301@redhat.com> In-Reply-To: <53EE86A8.6070301@redhat.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-IsSubscribed: yes X-SW-Source: 2014-q3/txt/msg00005.txt.bz2 On 08/15/2014 03:16 PM, Keith Seitz wrote: >> It's "experimental", and is intended to supply some "reference" >> repository while the official sourceware repository is not populated. >> >> Comments and pull requests are welcome :-) I've never used git submodules before, so keep this in mind. Following the README instructions: $ ls binutils-gdb COPYING itcl iwidgets Makefile README testsuite configure.ac gdbtk itk libgui patches tcl tk $ git submodule foreach --recursive git pull $ echo $? 0 [i.e., it did nothing] What did work for me was: $ git submodule init Submodule 'binutils-gdb' (git://sourceware.org/git/binutils-gdb.git) registered for path 'binutils-gdb' Submodule 'itcl' (https://github.com/tcltk/itcl.git) registered for path 'itcl' Submodule 'itk' (https://github.com/tcltk/itk.git) registered for path 'itk' Submodule 'tcl' (https://github.com/tcltk/tcl.git) registered for path 'tcl' Submodule 'tk' (https://github.com/tcltk/tk.git) registered for path 'tk' $ git submodule update Cloning into 'binutils-gdb'... remote: Counting objects: 700435, done. remote: Compressing objects: 100% (125840/125840), done. remote: Total 700435 (delta 566091), reused 664136 (delta 563189) Receiving objects: 100% (700435/700435), 215.82 MiB | 4.81 MiB/s, done. [snip] I have a bunch of follow-up comments to make. I'll try to get those down in email in the next few days. Thank you for your work on this. It is nice to have some help. Keith