enewhuis / liquibook

Modern C++ order matching engine

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

"git submodule update" failed

javapowered opened this issue · comments

Hi

Thank you OCI for open-sourcing this interesting project!
Just starting, so easy question.
I'm following build instruction and executing this step:

cd liquibook
git submodule init
git submodule update

However the last step is failed. What's wrong and how to fix it? Attaching log.

Thanks,
Oleg

C:\Oleg\wssGit>cd liquibook

C:\Oleg\wssGit\liquibook>git submodule init
Submodule 'test/unit/assertiv' (git@github.com:iamtheschmitzer/assertiv.git) reg
istered for path 'test/unit/assertiv'

C:\Oleg\wssGit\liquibook>git submodule update
Cloning into 'test/unit/assertiv'...
The authenticity of host 'github.com (192.30.252.131)' can't be established.
RSA key fingerprint is 16:27:ac:a5:76:28:3d:36:63:1b:56:4d:eb:df:a6:48.
Are you sure you want to continue connecting (yes/no)? yes
Warning: Permanently added 'github.com,192.30.252.131' (RSA) to the list of know
n hosts.
Permission denied (publickey).
fatal: Could not read from remote repository.

Please make sure you have the correct access rights
and the repository exists.
Clone of 'git@github.com:iamtheschmitzer/assertiv.git' into submodule path 'test
/unit/assertiv' failed

Did you download a zip, or by using git?

Permission denied (publickey) means there is a SSH error - are you able to
access other github repos?

On Fri, Nov 22, 2013 at 12:28 PM, javapowered notifications@github.comwrote:

Hi

Thank you OCI for open-sourcing this interesting project!
Just starting, so easy question.
I'm following build instruction and executing this step:

cd liquibook
git submodule init
git submodule update

However the last step is failed. What's wrong and how to fix it? Attaching
log.

Thanks,
Oleg

C:\Oleg\wssGit>cd liquibook

C:\Oleg\wssGit\liquibook>git submodule init
Submodule 'test/unit/assertiv' (git@github.com:iamtheschmitzer/assertiv.git)
reg
istered for path 'test/unit/assertiv'

C:\Oleg\wssGit\liquibook>git submodule update
Cloning into 'test/unit/assertiv'...
The authenticity of host 'github.com (192.30.252.131)' can't be
established.
RSA key fingerprint is 16:27:ac:a5:76:28:3d:36:63:1b:56:4d:eb:df:a6:48.
Are you sure you want to continue connecting (yes/no)? yes
Warning: Permanently added 'github.com,192.30.252.131' (RSA) to the list
of know
n hosts.
Permission denied (publickey).
fatal: Could not read from remote repository.

Please make sure you have the correct access rights
and the repository exists.
Clone of 'git@github.com:iamtheschmitzer/assertiv.git' into submodule
path 'test
/unit/assertiv' failed


Reply to this email directly or view it on GitHubhttps://github.com//issues/3
.

I'm using git.
"are you able to access other github repos" - what do you mean by "access"? I'm able to check-out several repositories, including liquibook.

Hello all
I got the same error ... I then downloaded the assertiv zip and that worked but I would need to try and added the module manually.

Using Windows 7 Professional Service Pack 1
Git version 1.9.2.msysgit.0

Regards John

I can access the original repo via git and it works as well

C:\assertiv>git clone https://github.com/iamtheschmitzer/assertiv.git
Cloning into 'assertiv'...
remote: Counting objects: 35, done.
remote: Compressing objects: 100% (17/17), done.
remote: Total 35 (delta 18), reused 35 (delta 18)
Unpacking objects: 100% (35/35), done.
Checking connectivity... done.

Thanks for any help
Regards JohnDBA

Hi John, could you try a new branch,

git clone https://github.com/objectcomputing/liquibook
git checkout sub
git submodule init
git submodule update

I've changed the submodule URL in that branch

Thanks

jeff

On Wed, May 21, 2014 at 9:46 PM, johndba notifications@github.com wrote:

I can access the original repo via git and it works as well

C:\assertiv>git clone https://github.com/iamtheschmitzer/assertiv.git
Cloning into 'assertiv'...
remote: Counting objects: 35, done.
remote: Compressing objects: 100% (17/17), done.
remote: Total 35 (delta 18), reused 35 (delta 18)
Unpacking objects: 100% (35/35), done.
Checking connectivity... done.

Thanks for any help
Regards JohnDBA


Reply to this email directly or view it on GitHubhttps://github.com//issues/3#issuecomment-43843362
.

Many thanks Jeff that worked - output below
Would you like me to update the wiki and post the solution or would you
prefer to yourself?

C:\nl>git clone https://github.com/objectcomputing/liquibook
Cloning into 'liquibook'...
remote: Reusing existing pack: 1098, done.
Receiving objects: 98% (1077/1098), 292.00 KiB | 170.00 KiB/s
Receiving objects: 100% (1098/1098), 501.60 KiB | 170.00 KiB/s, done.
Resolving deltas: 100% (625/625), done.
Checking connectivity... done.

C:\nl>cd liq*

C:\nl\liquibook>git checkout sub
Branch sub set up to track remote branch sub from origin.
Switched to a new branch 'sub'

C:\nl\liquibook>git submodule init
Submodule 'test/unit/assertiv' (
https://github.com/iamtheschmitzer/assertiv.git) registered for path
'test/unit/assertiv'

C:\nl\liquibook>git submodule update
Cloning into 'test/unit/assertiv'...
remote: Counting objects: 35, done.
remote: Compressing objects: 100% (17/17), done.
remote: Total 35 (delta 18), reused 35 (delta 18)
Unpacking objects: 100% (35/35), done.
Checking connectivity... done.
Submodule path 'test/unit/assertiv': checked out
'9171241257ba6d3938c8fbb082494be078da1c0b'

On 23 May 2014 07:12, Jeff Schmitz notifications@github.com wrote:

Hi John, could you try a new branch,

git clone https://github.com/objectcomputing/liquibook
git checkout sub
git submodule init
git submodule update

I've changed the submodule URL in that branch

Thanks

jeff

On Wed, May 21, 2014 at 9:46 PM, johndba notifications@github.com
wrote:

I can access the original repo via git and it works as well

C:\assertiv>git clone https://github.com/iamtheschmitzer/assertiv.git
Cloning into 'assertiv'...
remote: Counting objects: 35, done.
remote: Compressing objects: 100% (17/17), done.
remote: Total 35 (delta 18), reused 35 (delta 18)
Unpacking objects: 100% (35/35), done.
Checking connectivity... done.

Thanks for any help
Regards JohnDBA


Reply to this email directly or view it on GitHub<
https://github.com/objectcomputing/liquibook/issues/3#issuecomment-43843362>

.


Reply to this email directly or view it on GitHubhttps://github.com//issues/3#issuecomment-43944683
.

Actually, I'm going to merge the change to trunk, to fix for all

Thanks

jeff

On Thu, May 22, 2014 at 9:03 PM, johndba notifications@github.com wrote:

Many thanks Jeff that worked - output below
Would you like me to update the wiki and post the solution or would you
prefer to yourself?

C:\nl>git clone https://github.com/objectcomputing/liquibook
Cloning into 'liquibook'...
remote: Reusing existing pack: 1098, done.
Receiving objects: 98% (1077/1098), 292.00 KiB | 170.00 KiB/s
Receiving objects: 100% (1098/1098), 501.60 KiB | 170.00 KiB/s, done.
Resolving deltas: 100% (625/625), done.
Checking connectivity... done.

C:\nl>cd liq*

C:\nl\liquibook>git checkout sub
Branch sub set up to track remote branch sub from origin.
Switched to a new branch 'sub'

C:\nl\liquibook>git submodule init
Submodule 'test/unit/assertiv' (
https://github.com/iamtheschmitzer/assertiv.git) registered for path
'test/unit/assertiv'

C:\nl\liquibook>git submodule update
Cloning into 'test/unit/assertiv'...
remote: Counting objects: 35, done.
remote: Compressing objects: 100% (17/17), done.
remote: Total 35 (delta 18), reused 35 (delta 18)
Unpacking objects: 100% (35/35), done.
Checking connectivity... done.
Submodule path 'test/unit/assertiv': checked out
'9171241257ba6d3938c8fbb082494be078da1c0b'

On 23 May 2014 07:12, Jeff Schmitz notifications@github.com wrote:

Hi John, could you try a new branch,

git clone https://github.com/objectcomputing/liquibook
git checkout sub
git submodule init
git submodule update

I've changed the submodule URL in that branch

Thanks

jeff

On Wed, May 21, 2014 at 9:46 PM, johndba notifications@github.com
wrote:

I can access the original repo via git and it works as well

C:\assertiv>git clone https://github.com/iamtheschmitzer/assertiv.git
Cloning into 'assertiv'...
remote: Counting objects: 35, done.
remote: Compressing objects: 100% (17/17), done.
remote: Total 35 (delta 18), reused 35 (delta 18)
Unpacking objects: 100% (35/35), done.
Checking connectivity... done.

Thanks for any help
Regards JohnDBA


Reply to this email directly or view it on GitHub<

https://github.com/objectcomputing/liquibook/issues/3#issuecomment-43843362>

.


Reply to this email directly or view it on GitHub<
https://github.com/objectcomputing/liquibook/issues/3#issuecomment-43944683>

.


Reply to this email directly or view it on GitHubhttps://github.com//issues/3#issuecomment-43964558
.

This is now fixed, submodule URL updated in sub branch, now merged to trunk.