PrusaMendel icon indicating copy to clipboard operation
PrusaMendel copied to clipboard

ThingDoc submodule points to prusajr repo, where it doesn't exist

Open mohag opened this issue 12 years ago • 1 comments

Error when trying to pull it in: $ git submodule update --recursive --init Submodule 'thingdoc' ([email protected]:prusajr/ThingDoc.git) registered for path 'thingdoc' Cloning into 'thingdoc'... ERROR: Repository not found. fatal: The remote end hung up unexpectedly Clone of '[email protected]:prusajr/ThingDoc.git' into submodule path 'thingdoc' failed

mohag avatar Oct 04 '12 04:10 mohag

same here, had to edit .git/config and .gitmodules manually, changed remote url to "https://github.com/josefprusa/ThingDoc.git"

Proper patch would be this I think;

diff --git a/.gitmodules b/.gitmodules
index a8a90dd..7cc1378 100644
--- a/.gitmodules
+++ b/.gitmodules
@@ -1,3 +1,3 @@
 [submodule "thingdoc"]
        path = thingdoc
-       url = [email protected]:prusajr/ThingDoc.git
+       url = https://github.com/josefprusa/ThingDoc.git

furkanmustafa avatar Jun 01 '14 12:06 furkanmustafa