I am trying to push a git repo from PowerShell into an Azure DevOps repo, and I keep getting different auth errors when trying to push it.
I am hoping somebody can sh
I have the same problem.
My solution was:
The path while I try to use sudo git clone...
doesn't have permission to access my public and private key location: \home\localuser\.ssh\...
.
To solve this, I change ownership of the destination path to the same user:group ware my keys are stored and avoid to use sudo git clone....
, now im using git clone
without sudo
and everything works.
I hope you understand...