githubpush 연결refused 처리 방법

599 단어 git
공용 네트워크의 서버에 대한 검사는 로그에서 22포트 (ssh) 에 대한 불법 스캐닝을 대량으로 발견할 수 있습니다.보안을 강화하고 이러한 스캐닝을 줄이기 위해 우리는 서버의 ssh 포트를 비표준적인 포트로 바꾸었다.
github를 연결할 때 오류가 발생하여 연결할 수 없습니다.
#git pull ssh: connect to host github.com port xxxxx: Connection refused fatal: The remote end hung up unexpectedly
해결 방법, ssh의 config 파일을 편집합니다.
$vim ~/.ssh/config
Host github.com
HostName github.com
Port 22

테스트:
$ssh  -T [email protected]
Hi pubyun! You've successfully authenticated, but GitHub does not provide shell access.
$git pull
Current branch master is up to date.

좋은 웹페이지 즐겨찾기