I am following this tutorial - link
In this, you need access to a private repo called charting_library
, which I do.
As written in the documentation, The Charting Library is free, but its code is in the private repository on GitHub. Make sure that you have access to this repository: https://github.com/tradingview/charting_library/.
I don't see any error but I can see the code here.
So following the documentation, when I run this
git clone https://github.com/tradingview/charting-library-tutorial.git
The repo gets cloned, no problem. But then when I run the next command
git submodule update --init --recursive
I get the following error
Cloning into 'C:/coding/charting-library-tutorial/charting_library_clonned_data'...
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:tradingview/charting_library.git' into submodule path 'C:/coding/charting-library-tutorial/charting_library_clonned_data' failed
Failed to clone 'charting_library_clonned_data'. Retry scheduled
Cloning into 'C:/coding/charting-library-tutorial/charting_library_clonned_data'...
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:tradingview/charting_library.git' into submodule path 'C:/coding/charting-library-tutorial/charting_library_clonned_data' failed
Failed to clone 'charting_library_clonned_data' a second time, aborting
What am I doing wrong here?