git clone Https 还是 SSH ?

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了git clone Https 还是 SSH ?相关的知识,希望对你有一定的参考价值。

参考技术A

在 Github 上 git clone 某一 repository 时,它会给出两种选择: Clone with HTTPS Clone with SSH 。这个选择决定了以后访问 remote repository 的时候,采用什么样的方式去提交 credential。 Bitbucket 和 GitLab 同样有 Https 和 SSH 的选择。

就 Git 而言,https 和 ssh 的区别简单的说就是:

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 Https 还是 SSH ?的主要内容,如果未能解决你的问题,请参考以下文章

git clone ssh与https

git中https和ssh的区别

gitlab配置ssh key后,还是需要输入密码,git clone http可以。

windows系统git使用ssh方式和gitee/github进行同步

基于SSH协议clone GitHub远端仓库到本地-git

用ssh方式git clone,能不每次都输密码吗?