프로그래밍/General
[해결] Could not open a connection to your authentication agent
Lou Park
2022. 6. 17. 13:11
ssh-agent에 개인키를 등록하려할때 "Could not open a connection to your authentication agent" 에러를 뱉으면서 안되는 경우가 있다. (나의 경우엔 Git bash에서 문제가 발생)
아래처럼 ssh-agent를 eval 시켜주면 해결된다.
eval $(ssh-agent)
ssh-add ~/.ssh/<등록을 원하는 개인키>