728x90
After High Sierra upgrade, I got the ssh error when I use "git clone"
Error
git clone ssh://....
Cloning into 'build-....'...
Unable to negotiate with .... port 29418: no matching cipher found. Their offer: aes128-cbc,3des-cbc,blowfish-cbc,aes192-cbc,aes256-cbc
fatal: Could not read from remote repository.
Please make sure you have the correct access rights
Solution
ssh -c 3des-cbc <user>@<hostname>
or Add "Ciphers 3des-cbc" in ~/.ssh/config.
Reference: https://discussions.apple.com/thread/8196671
'Development' 카테고리의 다른 글
git internal server error (0) | 2023.04.21 |
---|---|
history 없이 현재 소스 구조와 동일하게 branch 생성하기 (0) | 2023.04.21 |
Yocto Project Developer Day Europe 2017 참석 후기 (0) | 2023.04.21 |
2017 AGL (Automotive Grade Linux) AMM (All Member Meeting) 참석 후기 (0) | 2023.04.21 |
SVN을 Git으로 전환하는 방법 (0) | 2023.04.21 |