1 区别
clone with ssh
方式的链接形式形式如下:
1 | git clone https://github.com/project/repo.git |
clone with https
方式的链接形式如下:
1 | git clone git@github.com:project/repo.git |
区别就是所用的协议不同:
- https用443端口,可以对repo根据权限进行读写,只要有账号密码就可进行操作。
- ssh则用的是22端口,也可以对repo根据权限进行读写,但是需要SSH Keys授权,这个key是通过ssh key生成器生成的,然后放在github上,作为授权的证据,这样的话就不需要用户名和密码进行授权了。
Reference
- https://stackoverflow.com/questions/11041729/why-does-github-recommend-https-over-ssh
- https://blog.csdn.net/sinat_36246371/article/details/79885261
写在最后
欢迎大家关注鄙人的公众号【麦田里的守望者zhg】,让我们一起成长,谢谢。
All articles in this blog are licensed under CC BY-NC-SA 4.0 unless stating additionally.
Comment