git clone ssh与https
Posted Overboom
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了git clone ssh与https相关的知识,希望对你有一定的参考价值。
git有两种方式拉取代码,ssh,http
https git clone是这样的
git clone https://github.com/project/repo.git
ssh git clone是这样的
git clone git@github.com:project/repo.git
区别就是所用的协议不同:
https用443端口,可以对repo根据权限进行读写,只要有账号密码就可进行操作。
ssh则用的是22端口,也可以对repo根据权限进行读写,但是需要SSH Keys授权,这个key是通过ssh key生成器生成的,然后放在git
以上是关于git clone ssh与https的主要内容,如果未能解决你的问题,请参考以下文章
windows系统git使用ssh方式和gitee/github进行同步