리눅스 CentOS에서:
yum install git
cd /home
mkdir mysite
cd mysite
git init
Windows 10의 경우:
git clone https://my_server_username:[email protected]/home/mysite/mysite.git
다음을 반환합니다.
fatal: unable to access 'https://192.168.1.10/home/mysite/mysite.git/': Failed to connect to 192.168.1.10 port 443 after 1014 ms: Connection refused
SSH를 사용하여 연결할 수 있으며 두 운영 체제 모두에서 방화벽이 비활성화되어 있습니다.
내가 뭐 놓친 거 없니?
답변1
원하는 것을 달성하는 방법에는 여러 가지가 있습니다. Linux 시스템을 git 서버로 사용합니다.
- 서버에서 gitd 데몬을 실행합니다. 이는 웹 서버(http/https) 프런트 엔드 또는 SSH 프런트 엔드를 사용하여 수행할 수 있습니다.
- 에 설명된 대로 서버에서 .ssh/authorized_keys를 구성하여 서버/데몬 없이 실행합니다.이 답변.