Re: A git repository for insight

Keith Seitz <[email protected]> Mon, 18 Aug 2014 11:44:53 -0700
Newsgroups gmane.comp.debugging.insight
Message-ID <[email protected]>
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