I made a test project with this manifest file:
idf_component.yml
Code: Select all
## IDF Component Manager Manifest File
dependencies:
espressif/button: "^2.5.0"
## Required IDF version
idf:
version: ">=4.1.0"
# For components in git repository:
esp_arithmetic:
path: "./component_add"
version: "*"
git: "git@github.com:kaspernyhus/multi_component_test.git"
The authenticity of host 'github.com' can't be established.
ECDSA key fingerprint is
How can I give the IDF Component Manager running on github access to this private git repo?
Thanks!