1、本地协议
优点:传输入读块。
缺点:离开局域网时候无法访问
2、git协议:
使用的:9418端口
优点:访问速度最快
缺点:没有授权机制,每个人都可以推送和下拉
3、http协议(主流)
介绍:http使用的80端口,公司本地配置比较麻烦!
优点:用起来简单,主流的协议。
缺点:传输速度较慢;每次合并需要输入账号和密码;
4、ssh协议(重点)
介绍:ssh企业内部比较容易搭建,ssh需要配置公钥和密钥配对,传输速度比http效率好。
使用步骤:
1.生成RSA密钥对:
5、ssh和http对比
1.克隆对比:
ssh: git clone git@github.com:gaojulong/ContactsBackup.git
http: git clone https://github.com/gaojulong/ContactsBackup.git
网友评论