All Questions
414 questions
-1
votes
0
answers
59
views
Using ssh between two GitHub repos
I am trying to do a pip install in an org of a private repo from another repo. Like this:
requirements.txt:
opencensus-ext-azure
opentelemetry-api
opentelemetry-sdk
opentelemetry-instrumentation-...
0
votes
1
answer
127
views
How to authenticate a Python package between two repos in GitHub and deploy
We have a private utility repo in GitHub and we would like to be able to install this package with a GitHub Actions. When developing locally I have created a ssh key, uploaded the public key to deploy ...
2
votes
1
answer
61
views
Can't SSH to GitHub using key saved in a custom lcoation
When I generate an ssh key in a different path than the default I can't access by ssh in github, I don't know what the problem is, but I know I have tried many times to generate and use a ssh with a ...
1
vote
1
answer
86
views
Sudden change in access: Permission denied (publickey)
I have been using my local Git and GitHub connection via an SSH key that suddenly (without obvious cause) is not allowing me to manage my remote repo's by push or pull. I've tried deleting the SSH key ...
0
votes
0
answers
41
views
SSH failure for private github repository
I am attempting to push/pull using SSH to my private github repository. I went through the steps of creating a key, uploading the public key to my github account, and adding it to my ssh-agent, using ...
1
vote
1
answer
59
views
Conflict between two git accounts on same system
I've added two ssh config in ~/.ssh/config:
Host account1
User git
Hostname github.com
PreferredAuthentications publickey
IdentityFile /home/USER/.ssh/account2_ssh
Host account2
User git
...
0
votes
1
answer
83
views
Ssh key-based authentication to github inside a github action fails with "Host key verification failed"
In a github action I'm building an Elixir project which has a dependency on a private github repo i.e. during the deps.get phase it clones it using git. The problem is that the ssh connection to ...
0
votes
1
answer
62
views
Multiple git account associated to folders and SSH Confiog
I'm working with multiple GitHub account (let's say userA and userB ...). My folder architecture is
Projects/
|- userA/
|- projectA1/
|- projectA2/
|- ... All the repository accessible ...
0
votes
0
answers
395
views
Deployment key issue - error in libcrypto
Preface: I am a very new dev, so many things are still new to me, excuse for my limited knowledge!
I'm adding a small deployment for a site I'm working on, specifically to grab what I push to our ...
0
votes
0
answers
32
views
Issue Cloning Repository After SSH Key Change
I recently changed my GitHub SSH key and updated it in my GitHub account. Most of my private repositories are working fine, but I’m having trouble cloning a specific repository that I’ve contributed ...
0
votes
1
answer
65
views
Multiple users successfully authenticated, but SSH keys not working on Windows 11
I'm trying to set multiple GitHub accounts for multiple projects I'm working on. It just won't work.
First of all, I'm on Windows 11.
I've created the keys, they're in C:/Users/User/.ssh/...
I ...
0
votes
0
answers
27
views
Is there a way to automate generating an SSH key for git clone every time I spin up a new remote server?
Currently, every time I spin up a new remote server, I create a new SSH key and register it with my GitHub account to clone private repositories.
I believe using an SSH key is mandatory for this, but ...
0
votes
0
answers
50
views
Can't sign in to github BUT gh works with ssh key, but 2fa recovery states no valid ssh keys for recovery?
I have different github account for different organizations. One which I use rather infrequently, I can't login into. The password reset email works fine but apparently I signed up for 2FA and lost ...
0
votes
0
answers
22
views
SSH connection autentication says ok, but still fails to connect
enter image description here
as showed in the image above the connection works but permissions say denied but i double checked the permissions on the linux server to 600 and 644 using chmod command on ...
0
votes
0
answers
342
views
How to Configure CI/CD Pipeline to Pull Changes Using SSH Key or Access Token Without Username and Password?
I am in the process of setting up a CI/CD pipeline and need some guidance on configuring my script to automatically pull changes from a target branch. I would like to achieve this without the need to ...