84669 person learning
152542 person learning
20005 person learning
5487 person learning
7821 person learning
359900 person learning
3350 person learning
180660 person learning
48569 person learning
18603 person learning
40936 person learning
1549 person learning
1183 person learning
32909 person learning
如题~明眼人一眼就可以看出来git+ssh是通过ssh,但是那个git有什么区别?那我们平时clone的时候也是直接写git,为什么不直接写git+ssh?
认证0级讲师
git, ssh, https are three different protocols.
Please see the official website documentation for details
Git itself supports both http(s) and ssh protocols. If you git clone一个https://的URL,Git就调用http协议的后端,如果git clone一个ssh:// the URL, the ssh backend will be called.
git clone
https://
ssh://
git, ssh, https are three different protocols.
Please see the official website documentation for details
Git itself supports both http(s) and ssh protocols. If you
git clone
一个https://
的URL,Git就调用http协议的后端,如果git clone
一个ssh://
the URL, the ssh backend will be called.