How can I setup access for multiple private repositories in Cpanel?
I've tried many tutorials and documentation. Here is one of them: https://docs.cpanel.net/knowledge-base/web-services/guide-to-git-set-up-access-to-private-repositories/
But I'm always got this error:
It seems like we can only use the default name (id_rsa). I've tried this code:
It works fine. But it will generate the default (which is id_rsa). This means that we can't deploy multiple private repos, right? Because we can only use "id_rsa".
So is it possible to create an ssh key without a default name? Also, how to create multiple private repos in Cpanel?
I've tried many tutorials and documentation. Here is one of them: https://docs.cpanel.net/knowledge-base/web-services/guide-to-git-set-up-access-to-private-repositories/
But I'm always got this error:
Permission denied (publickey). fatal: Could not read from remote repository.
It seems like we can only use the default name (id_rsa). I've tried this code:
ssh-keygen -t rsa -b 4096 -C "username@example"
It works fine. But it will generate the default (which is id_rsa). This means that we can't deploy multiple private repos, right? Because we can only use "id_rsa".
So is it possible to create an ssh key without a default name? Also, how to create multiple private repos in Cpanel?