我正在遵循http://git-scm.com/book/en/Git-Basics-Getting-a-Git-Repository上的 git 基础指南,并且在使用 Can't clone repo回答了我最初的问题之后git clone git://... - 好的 git clone http://关于如何使用 git URL 克隆 repo,我现在想知道这本书所说的有什么区别:
git clone git://github.com/org_name/repo_name.git
和
git clone git@github.com:org_name/repo_name.git
后者对我有用,书中的行没有,并给我错误信息
克隆到“repo_name”致命:无法连接到 github.com:github.com:ai_socktype 不支持 Servname
虽然显而易见的答案是“使用有效的”,但最好了解差异是什么以及导致它的原因。