摘要:Git 有以下四种方法来存取远端的Git服务器
Git 有以下四种方法来存取远端的Git服务器:
- SSH 安全性最佳
- git clone [email protected]:ihower/sandbox.git
- HTTP/HTTPS 速度最差,但能突破防火墙限制
- git clone https://[email protected]/ihower/sandbox.git
- Git protocol 速度最快,但缺认证机制(因此只能做成只读)
- git clone git://github.com/ihower/sandbox.git
- File 本机目录 (有人用 Dropbox 分享 git init –bare –shared 目录!! Crazy!!)
- git clone file://path/to/repo.git
原文:大专栏 Git 有以下四种方法来存取远端的Git服务器
原文地址:https://www.cnblogs.com/chinatrump/p/11458478.html
时间: 2024-10-14 22:47:38