From: "Ricky Nite" <ricky.nite@gmail.com>
To: git@vger.kernel.org
Subject: Re: submodule init problem
Date: Wed, 25 Jul 2007 08:30:22 +0800 [thread overview]
Message-ID: <d4b731510707241730u45755c0dwfde5e0b14b14f1da@mail.gmail.com> (raw)
In-Reply-To: <d4b731510707241709pcad0a4bj85b71892cd2de84c@mail.gmail.com>
This problem doesn't seem to occur if I rename my submodules (but I
really don't want to):
rnite@linuskarl:~/git_dev$ mkdir moduleA
rnite@linuskarl:~/git_dev$ mkdir moduleB
rnite@linuskarl:~/git_dev$ cd moduleA
rnite@linuskarl:~/git_dev/moduleA$ echo "foo" > moduleAtop.v
rnite@linuskarl:~/git_dev/moduleA$ ~/bin/git init
Initialized empty Git repository in .git/
rnite@linuskarl:~/git_dev/moduleA$ ~/bin/git add moduleAtop
rnite@linuskarl:~/git_dev/moduleA$ ~/bin/git commit -a -m"imitial commit"
Created initial commit f8bc70b: imitial commit
1 files changed, 1 insertions(+), 0 deletions(-)
create mode 100644 moduleAtop.v
rnite@linuskarl:~/git_dev/moduleA$ cd ../moduleB
rnite@linuskarl:~/git_dev/moduleB$ echo "foo" > moduleBtop.v
rnite@linuskarl:~/git_dev/moduleB$ ~/bin/git init
Initialized empty Git repository in .git/
rnite@linuskarl:~/git_dev/moduleB$ ~/bin/git add moduleBtop.v
rnite@linuskarl:~/git_dev/moduleB$ ~/bin/git commit -a -m"imitial commit"
Created initial commit da426f3: imitial commit
1 files changed, 1 insertions(+), 0 deletions(-)
create mode 100644 moduleBtop.v
rnite@linuskarl:~/git_dev/moduleB$ cd ..
rnite@linuskarl:~/git_dev$ mkdir myproj2
rnite@linuskarl:~/git_dev$ cd myproj2
rnite@linuskarl:~/git_dev/myproj2$ ~/bin/git init
Initialized empty Git repository in .git/
rnite@linuskarl:~/git_dev/myproj2$ ~/bin/git submodule add ~/git_dev/moduleA
Initialized empty Git repository in /home/rnite/git_dev/myproj2/moduleA/.git/
remote: Generating pack...
remote: Done counting 3 objects.
Deltifying 3 objects...
100% (3/3) done
Total 3 (delta 0), reused 0remote: (delta 0)
Indexing 3 objects...
100% (3/3) done
rnite@linuskarl:~/git_dev/myproj2$ ~/bin/git submodule add ~/git_dev/moduleB
Initialized empty Git repository in /home/rnite/git_dev/myproj2/moduleB/.git/
remote: Generating pack...
remote: Done counting 3 objects.
Deltifying 3 objects...
100% (3/3) done
Total 3 (delta 0), reused 0remote: (delta 0)
Indexing 3 objects...
100% (3/3) done
rnite@linuskarl:~/git_dev/myproj2$ ~/bin/git submodule init
Submodule 'moduleA' (/home/rnite/git_dev/moduleA/.git) registered for
path 'moduleA'
Submodule 'moduleB' (/home/rnite/git_dev/moduleB/.git) registered for
path 'moduleB'
help,
RickyN
On 7/25/07, Ricky Nite <ricky.nite@gmail.com> wrote:
> Hello,
>
> I encountered this message in "git submodule init":
> "No url found for submodule path '<submodule>' in .gitmodules"
>
> But when I look at .gitmodules, the <submodule> url is there.
> Subsequently, I cannot do "git submodule update"
>
> Here's the full log:
> rnite@linuskarl:~/git_dev/myproj$ ~/bin/git --version
> git version 1.5.3.rc2.g11308
> rnite@linuskarl:~/git_dev$ mkdir flash
> rnite@linuskarl:~/git_dev$ mkdir flashboard
> rnite@linuskarl :~/git_dev$ cd flash
> rnite@linuskarl:~/git_dev/flash$ echo "foo" > flash.v
> rnite@linuskarl:~/git_dev/flash$ ~/bin/git init
> Initialized empty Git repository in .git/
> rnite@linuskarl:~/git_dev/flash$ ~/bin/git add flash.v
> rnite@linuskarl:~/git_dev/flash$ ~/bin/git commit -a -m "initial
> commit of flash module"
> Created initial commit c19874e: initial commit of flash module
> 1 files changed, 1 insertions(+), 0 deletions(-)
> create mode 100644 flash.v
> rnite@linuskarl:~/git_dev/flash$ cd ../flashboard
> rnite@linuskarl:~/git_dev/flashboard$ echo "foo" > flashboard.v
> rnite@linuskarl:~/git_dev/flashboard$ ~/bin/git init
> Initialized empty Git repository in .git/
> rnite@linuskarl:~/git_dev/flashboard$ ~/bin/git add flashboard.v
> rnite@linuskarl:~/git_dev/flashboard$ ~/bin/git commit -a -m "initial
> commit of flashboard module"
> Created initial commit 45dff87: initial commit of flashboard module
> 1 files changed, 1 insertions(+), 0 deletions(-)
> create mode 100644 flashboard.v
> rnite@linuskarl:~/git_dev/flashboard$ cd ..
> rnite@linuskarl :~/git_dev$ mkdir myproj
> rnite@linuskarl:~/git_dev$ cd myproj
> rnite@linuskarl:~/git_dev/myproj$ ~/bin/git init
> Initialized empty Git repository in .git/
> rnite@linuskarl:~/git_dev/myproj$ ~/bin/git submodule add ~/git_dev/flash
> Initialized empty Git repository in /home/rnite/git_dev/myproj/flash/.git/
> remote: Generating pack...
> remote: Done counting 3 objects.
> Deltifying 3 objects...
> 100% (3/3) done
> Total 3 (delta 0), reused 0remote: (delta 0)
> Indexing 3 objects...
> 100% (3/3) done
> rnite@linuskarl:~/git_dev/myproj$ ~/bin/git submodule add ~/git_dev/flashboard
> Initialized empty Git repository in /home/rnite/git_dev/myproj/flashboard/.git/
> remote: Generating pack...
> remote: Done counting 3 objects.
> Deltifying 3 objects...
> 100% (3/3) done
> Total 3 (delta 0), reused 0remote: (delta 0)
> Indexing 3 objects...
> 100% (3/3) done
> rnite@linuskarl:~/git_dev/myproj$ ~/bin/git submodule init
> No url found for submodule path 'flash' in .gitmodules
> rnite@linuskarl:~/git_dev/myproj$ cat .gitmodules
> [submodule "flash"]
> path = flash
> url = /home/rnite/git_dev/flash/.git
> [submodule "flashboard"]
> path = flashboard
> url = /home/rnite/git_dev/flashboard/.git
>
> I can add more submodules, but the message stays the same after "git
> submodule init" and I cannot do "git submodule update"
>
> help,
> RickyN
>
next prev parent reply other threads:[~2007-07-25 0:30 UTC|newest]
Thread overview: 37+ messages / expand[flat|nested] mbox.gz Atom feed top
2007-05-28 20:51 [PATCH] Let .git/config specify the url for submodules Lars Hjemli
2007-05-31 0:17 ` Lars Hjemli
2007-05-31 23:43 ` Junio C Hamano
2007-06-01 8:08 ` Josef Weidendorfer
2007-06-01 9:17 ` Lars Hjemli
2007-06-01 8:57 ` Sven Verdoolaege
2007-06-01 9:25 ` Lars Hjemli
2007-06-01 9:35 ` Sven Verdoolaege
2007-06-01 14:45 ` Lars Hjemli
2007-06-01 14:51 ` Sven Verdoolaege
2007-06-01 15:56 ` Lars Hjemli
2007-06-01 16:29 ` Linus Torvalds
2007-06-01 19:55 ` Junio C Hamano
2007-06-02 7:13 ` Lars Hjemli
2007-06-02 7:44 ` Sven Verdoolaege
2007-06-02 8:39 ` Lars Hjemli
2007-06-02 9:15 ` Junio C Hamano
2007-06-02 9:53 ` Lars Hjemli
2007-06-02 10:12 ` Junio C Hamano
2007-06-02 10:38 ` Lars Hjemli
2007-07-20 17:23 ` [PATCH] git-submodule fixes for call to git config --get-regexp Chris Larson
2007-07-20 18:07 ` Junio C Hamano
2007-07-20 18:36 ` Johannes Schindelin
2007-07-25 0:09 ` submodule init problem Ricky Nite
2007-07-25 0:30 ` Ricky Nite [this message]
2007-07-25 1:49 ` Junio C Hamano
2007-07-25 8:15 ` Sven Verdoolaege
2007-07-25 20:25 ` Lars Hjemli
2007-07-25 20:31 ` Johannes Schindelin
2007-07-25 20:40 ` Lars Hjemli
2007-07-25 20:50 ` Johannes Schindelin
2007-07-25 22:20 ` Junio C Hamano
2007-07-25 23:43 ` Ricky Nite
2007-07-25 23:49 ` Junio C Hamano
2007-06-02 7:49 ` [PATCH] Let .git/config specify the url for submodules Sven Verdoolaege
2007-06-02 16:34 ` Linus Torvalds
2007-06-02 17:35 ` Sven Verdoolaege
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=d4b731510707241730u45755c0dwfde5e0b14b14f1da@mail.gmail.com \
--to=ricky.nite@gmail.com \
--cc=git@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).