AndreaCatania / godot_tracy

The C++ and GDScript profiler for GodotEngine games
MIT License
92 stars 10 forks source link

Could not read from remote repository #7

Open jitspoe opened 1 month ago

jitspoe commented 1 month ago

Following the directions on the github page, I get:

$ git clone --recurse-submodules https://github.com/AndreaCatania/godot_tracy.git
Cloning into 'godot_tracy'...
remote: Enumerating objects: 56, done.
remote: Counting objects: 100% (56/56), done.
remote: Compressing objects: 100% (30/30), done.
remote: Total 56 (delta 28), reused 51 (delta 25), pack-reused 0
Receiving objects: 100% (56/56), 6.47 MiB | 9.68 MiB/s, done.
Resolving deltas: 100% (28/28), done.
Submodule 'tracy' (git@github.com:wolfpld/tracy.git) registered for path 'tracy'
Cloning into 'E:/Projects/godot/Tracy/godot_tracy/tracy'...
Host key verification failed.
fatal: Could not read from remote repository.

Please make sure you have the correct access rights
and the repository exists.
fatal: clone of 'git@github.com:wolfpld/tracy.git' into submodule path 'E:/Projects/godot/Tracy/godot_tracy/tracy' failed
Failed to clone 'tracy'. Retry scheduled
Cloning into 'E:/Projects/godot/Tracy/godot_tracy/tracy'...
Host key verification failed.
fatal: Could not read from remote repository.

Please make sure you have the correct access rights
and the repository exists.
fatal: clone of 'git@github.com:wolfpld/tracy.git' into submodule path 'E:/Projects/godot/Tracy/godot_tracy/tracy' failed
Failed to clone 'tracy' a second time, aborting

And:

$ git submodule update --init --recursive
Cloning into 'E:/Projects/godot/Tracy/godot_tracy/tracy'...
Warning: Permanently added the ECDSA host key for IP address '140.82.113.4' to the list of known hosts.
git@github.com: Permission denied (publickey).
fatal: Could not read from remote repository.

Please make sure you have the correct access rights
and the repository exists.
fatal: clone of 'git@github.com:wolfpld/tracy.git' into submodule path 'E:/Projects/godot/Tracy/godot_tracy/tracy' failed
Failed to clone 'tracy'. Retry scheduled
Cloning into 'E:/Projects/godot/Tracy/godot_tracy/tracy'...
git@github.com: Permission denied (publickey).
fatal: Could not read from remote repository.

Please make sure you have the correct access rights
and the repository exists.
fatal: clone of 'git@github.com:wolfpld/tracy.git' into submodule path 'E:/Projects/godot/Tracy/godot_tracy/tracy' failed
Failed to clone 'tracy' a second time, aborting

Not sure if the documentation is wrong, something is configured incorrectly, or I did something wrong.

jitspoe commented 1 month ago

What's weird is I was able to just click on the link to the tracy repository within the godot_tracy repository here on github and then download the zip from that specific checksum. Not sure why the command line didn't work.

RexIturan commented 5 days ago

The tracy submodule uses the ssh url, if you change the git url to use https in both .gitmodules and .git/config it should work. Idk if .gitmodules is necessary, worked for me.

url = git@github.com:wolfpld/tracy.git

to

url = https://github.com/wolfpld/tracy.git