git clone
Posted dlarger
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了git clone相关的知识,希望对你有一定的参考价值。
1.命令用途
远程操作的第一步,通常是从远程主机克隆一个版本库,这时就要用到git clone命令。
2.命令说明
2.1默认参数
git clone <版本库的网址>
如:git clone https://github.com/jquery/jquery.git
该命令会在本地主机生成一个目录,与远程主机的版本库同名。
2.2指定本地目录
git clone <版本库的网址> <本地目录名>
2.3支持协议类型
git clone支持多种协议,除了HTTP(s)以外,还支持SSH、Git、本地文件协议等。
如:
$ git clone http[s]?/example.com/path/to/repo.git/
$ git clone ssh://example.com/path/to/repo.git/
$ git clone git://example.com/path/to/repo.git/
$ git clone /opt/git/project.git
$ git clone file:///opt/git/project.git
$ git clone ftp[s]?/example.com/path/to/repo.git/
$ git clone rsync://example.com/path/to/repo.git/
SSH协议的另一种写法:
$ git clone [user@]example.com:path/to/repo.git/
通常来说,Git协议下载速度最快,SSH协议用于需要用户认证的场合。
以上是关于git clone的主要内容,如果未能解决你的问题,请参考以下文章
Git 常用操作 - git clone/git checkout -b/git diff/git push/git pull
Git 常用操作 - git clone/git checkout -b/git diff/git push/git pull