git clone

作者: Muscleape | 来源:发表于2018-09-06 09:13 被阅读16次

    项目文件名

    通过clone命令会在本地主机生成一个目录,与远程主机的版本库同名。如果要指定不同的目录名,可以将目录名作为git clone命令的第二个参数。

    $ git clone <版本库的网址> <本地目录名>
    

    协议

    git clone支持多种协议,除了HTTP(s)以外,还支持SSH、Git、本地文件协议等

    Git协议下载速度最快,SSH协议用于需要用户认证的场合

    $ 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 clone -o

    指定远程主机的主机名

    $ git clone -o jQuery https://github.com/jquery/jquery.git
    $ git remote
    jQuery
    

    相关文章

      网友评论

          本文标题:git clone

          本文链接:https://www.haomeiwen.com/subject/itytgftx.html