git clone

Posted 北野

tags:

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

一、git clone

$ git clone <版本库的网址> //该命令会在本地主机生成一个目录,与远程主机的版本库同名
$ git clone <版本库的网址> <本地目录名> //要指定不同的目录名,可以将目录名作为git clone命令的第二个参数

  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 [[email protected]]example.com:path/to/repo.git/        //通常来说,Git协议下载速度最快,SSH协议用于需要用户认证的场合。各种协议优劣的详细讨论请参考官方文档

  

以上是关于git clone的主要内容,如果未能解决你的问题,请参考以下文章

git clone复制远程代码覆盖非空目录

如何git clone别人仓库的代码

【git】clone代码、ssh、权限问题

git小乌龟clone下来的文件不对

git clone从网络上拷贝一份源代码,过几天,想更新一下代码,如何操作?

Git 如何 clone 非 master 分支的代码