Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to update the submodules of this git repositary but I keep getting a fatal errors:

[root@iptlock ProdigyView]# git submodule update --recursive
Cloning into core...
Permission denied (publickey).
fatal: The remote end hung up unexpectedly
Clone of 'git@github.com:ProdigyView/ProdigyView-Core.git' into submodule path 'core' failed

Or this way

[root@iptlock root]# git clone --recursive https://github.com/ProdigyView/ProdigyView.git
Cloning into ProdigyView...
remote: Counting objects: 438, done.
remote: Compressing objects: 100% (275/275), done.
remote: Total 438 (delta 172), reused 394 (delta 128)
Receiving objects: 100% (438/438), 8.03 MiB | 5.19 MiB/s, done.
Resolving deltas: 100% (172/172), done.
Submodule 'core' (git@github.com:ProdigyView/ProdigyView-Core.git) registered for path 'core'
Cloning into core...
Permission denied (publickey).
fatal: The remote end hung up unexpectedly
Clone of 'git@github.com:ProdigyView/ProdigyView-Core.git' into submodule path 'core' failed

Any ideas of why this is happening withthe submodule? The repo is one: https://github.com/ProdigyView/ProdigyView . The submodule is able to be cloned if I do not try to clone it as a submodule.

share|improve this question

2 Answers

The issue is that git can't find the public key needed to download the repo from your server, the solution is to use the public url.

In the file .gitmodule you will find the following entry:

[submodule "example"]
    path = example
    url = git@github.com:webhat/example.git

The URL need to be changed to the public URL for the module:

[submodule "example"]
    path = example
    url = git://github.com/webhat/example.git

As you can see the prefix git@ has been changed to git:// and the infix : becomes /

The previous answer was unclear to me, so I added this.

share|improve this answer
up vote 1 down vote accepted

Figured it out. The path in the .gitmodule files could not download the submodule.

share|improve this answer
6  
I'm having this same issue. Could you elaborate on what was wrong and how you fixed it? – Dave Lancea Nov 30 '11 at 21:02
This is how I have solved this problem: In the .gitmodules file and .git/config file, you will see url path for the submodule you want to update. If it is like git@github... change it to a valid url: git//github.com/.... it will solve the problem. – Khue Vu Jul 18 '12 at 2:28
This answer is terribly unclear. Khune Vu's suggestion did not resolve the issue either. – awolf Aug 27 '12 at 22:01
Sorry, in your clone directory open up open the file .gitsubmodule. In there you will see that the submodules have paths that are related to the repo in which they are cloned from. Make sure the url that it is cloning from is correct. BTW, the .gitsubmodule is invisible, do an ls -l a from the root to to see it. – Devin Dixon Aug 28 '12 at 16:12

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.