일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 리눅스
- ORA-28002
- Anaconda
- STS
- 분노
- geckodriver
- Eclipse
- SCADA
- build
- error
- LOG
- 명령어
- 말라키
- checkbox
- JQuery
- DataTables
- Linux
- 가상환경
- Python
- 원한
- 파이썬
- Custom
- 맥코트
- pythoncom37.dll
- HMI
- Today
- Total
목록2022/06 (2)
2010년 5월 1일, 2막
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)
git push origin HEAD:master 를 실행했을 때 SSL certificate problem: self signed certificate in certificate chain 오류가 발생했다. 해결 : git config --global http.sslVerify false 참조: https://stackoverflow.com/questions/11621768/how-can-i-make-git-accept-a-self-signed-certificate How can I make git accept a self signed certificate? Using Git, is there a way to tell it to accept a self signed certificate? I am us..