clarte53 / GaussianSplattingVRViewerUnity

A VR viewer for gaussian splatting models developped as native plugin for unity with the original CUDA rasterizer.
Other
197 stars 25 forks source link

git clone Error : Host key verification failed #19

Closed goometasoft closed 2 months ago

goometasoft commented 2 months ago
git clone --recursive https://github.com/clarte53/GaussianSplattingVRViewerUnity.git D:\5
Cloning into 'D:\5'...
remote: Enumerating objects: 1324, done.
remote: Counting objects: 100% (232/232), done.
remote: Compressing objects: 100% (155/155), done.
Receiving objects: 100% (1324/1324), 22.05 MiB | 5.00 MiB/s, done.1092Receiving objects: 100% (1324/1324), 18.79 MiB | 4.81 MiB/s

Resolving deltas: 100% (337/337), done.
Submodule 'UnityPlugin/dependencies/diff-gaussian-rasterization' (git@github.com:clarte53/diff-gaussian-rasterization.git) registered for path 'UnityPlugin/dependencies/diff-gaussian-rasterization'
Cloning into 'D:/5/UnityPlugin/dependencies/diff-gaussian-rasterization'...
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:clarte53/diff-gaussian-rasterization.git' into submodule path 'D:/5/UnityPlugin/dependencies/diff-gaussian-rasterization' failed
Failed to clone 'UnityPlugin/dependencies/diff-gaussian-rasterization'. Retry scheduled
Cloning into 'D:/5/UnityPlugin/dependencies/diff-gaussian-rasterization'...
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:clarte53/diff-gaussian-rasterization.git' into submodule path 'D:/5/UnityPlugin/dependencies/diff-gaussian-rasterization' failed
Failed to clone 'UnityPlugin/dependencies/diff-gaussian-rasterization' a second time, aborting
Peamon commented 2 months ago

You can try this :

git clone https://github.com/clarte53/GaussianSplattingVRViewerUnity.git gsviewer

Edit .gitmodule file and change the url git@github.com:clarte53/diff-gaussian-rasterization.git to https://github.com/clarte53/diff-gaussian-rasterization.git

Then :

cd gsviewer git submodule update --init --recursive

Peamon commented 2 months ago

I have changed the '.gitmodules' file to a local reference.

it should directly work now.