Skip to content
This repository has been archived by the owner on Nov 3, 2021. It is now read-only.

fatal: clone of 'git://github.com/RusticiSoftware/TinCanJS.git' into submodule path 'GolfExample_TCAPI/scripts/TinCanJS' failed #43

Open
SeemaSP opened this issue May 2, 2017 · 2 comments

Comments

@SeemaSP
Copy link

SeemaSP commented May 2, 2017

Having this issue when I ran the command:
git submodule update --init --recursive
OR
git clone --recursive https://github.com/RusticiSoftware/TinCan_Prototypes.git

@brianjmiller
Copy link
Member

This was a problem with the way submodules were originally set up. I've pushed a commit to fix the problem so that submodule sources point at https URLs instead of git ones (the latter requiring a permission in our organization). You should be able to either re-clone or in your existing clone do:

git fetch
git merge origin/master
git submodule sync
git submodule update --init --recursive

Let us know if this does not solve the problem.

@SeemaSP
Copy link
Author

SeemaSP commented May 3, 2017

Still having issue. Apparently the url is still git. I got the following error:
fatal: unable to connect to github.com:
github.com: Temporary failure in name resolution

fatal: clone of 'git://github.com/RusticiSoftware/TinCanJS.git' into submodule path 'scripts/TinCanJS' failed
Failed to recurse into submodule path 'StatementViewer/resources'
This is what I have done so far:
git fetch
outcome:
remote: Counting objects: 3, done.
remote: Compressing objects: 100% (3/3), done.
remote: Total 3 (delta 0), reused 0 (delta 0), pack-reused 0
Unpacking objects: 100% (3/3), done.
From https://github.com/RusticiSoftware/TinCan_Prototypes
c1b177b..e51fa4f master -> origin/master
git merge origin/master
Updating c1b177b..e51fa4f
Fast-forward
.gitmodules | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
git submodule sync
outcome:
Synchronizing submodule url for 'GolfExample_TCAPI/scripts/TinCanJS'
Synchronizing submodule url for 'JsTetris_TCAPI/TinCanJS'
Synchronizing submodule url for 'Locator_TCAPI/scripts/TinCanJS'
Synchronizing submodule url for 'ReportSample/scripts/TinCanJS'
Synchronizing submodule url for 'StatementViewer/TinCanJS'
Synchronizing submodule url for 'StatementViewer/resources'
And then when I did this:
git submodule update --init --recursive
outcome:
Submodule path 'GolfExample_TCAPI/scripts/TinCanJS': checked out
Submodule path 'JsTetris_TCAPI/TinCanJS': checked out
Submodule path 'Locator_TCAPI/scripts/TinCanJS': checked out
Submodule path 'ReportSample/scripts/TinCanJS': checked out
Submodule path 'StatementViewer/TinCanJS': checked out
Submodule 'scripts/TinCanJS' (git://github.com/RusticiSoftware/TinCanJS.git) registered for path 'scripts/TinCanJS'
Cloning into 'scripts/TinCanJS'...
And then it gave the error mentioned before.

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants