일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | ||||
4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 | 12 | 13 | 14 | 15 | 16 | 17 |
18 | 19 | 20 | 21 | 22 | 23 | 24 |
25 | 26 | 27 | 28 | 29 | 30 | 31 |
Tags
- JQuery
- ORA-28002
- 분노
- 명령어
- SCADA
- HMI
- Custom
- pythoncom37.dll
- 리눅스
- 말라키
- 원한
- geckodriver
- 맥코트
- STS
- Linux
- Python
- LOG
- 파이썬
- Eclipse
- checkbox
- DataTables
- 가상환경
- Anaconda
- build
- error
Archives
- Today
- Total
2010년 5월 1일, 2막
[git] clone 시 "no matching host key type found." 에러 발생 본문
git clone 실행 시 오류 발생
no matching host key type found. Their offer: ssh-rsa,ssh-dss
fatal: Could not read from remote repository.
해결책 :
다음과 같이 옵션을 주어 git 명령 실행
ssh -oHostKeyAlgorithms=+ssh-dss" git clone test@127.0.0.1:test.git
git 명령시마다 옵션을 주는 것은 번거로운 일이니 git config에 등록
git config core.sshCommand "ssh -oHostKeyAlgorithms=+ssh-dss"
출처 : 해피쿠 블로그 - [Git] SSH로 git remote repository 접근 (happykoo.net)
'Computer > Tips' 카테고리의 다른 글
WSL2에서 systemctl 사용 (0) | 2022.08.03 |
---|---|
wsl 드라이버 이동 설치 (0) | 2022.08.02 |
[git] SSL certificate problem 해결 (0) | 2022.06.14 |
Unable to fetch some archives, maybe run apt-get update or try with --fix-missing (0) | 2022.05.24 |
도커(Docker) 관련 정보 (0) | 2022.05.19 |