git에서 ssh 접속 시 no matching host key type found. Thier offer : ssh-rsa 에러가 발생한다. 이는 push나 pull 같은 명령어를 쓸 때 해당된다. 이것은 git의 version이 2.3 이상이 되면 ssh에서 rsa 방식을 지원하지 않아 PubkeyAcceptedAlgorithms와 HostKeyAlgorithms 옵션을 직접 지정해줘야 한다. git 폴더 아래 cofig 파일을 열어 옵션을 추가한다. [core] repositoryformatversion = 0 filemode = false bare = false logallrefupdates = true symlinks = false ignorecase = true sshCommand = ssh ..