遠程操做的第一步,一般是從遠程主機克隆一個版本庫,這時就要用到git clone命令。jquery
$ git clone <版本庫的網址>
好比,克隆jQuery的版本庫。git
$ git clone https://github.com/jquery/jquery.git
該命令會在本地主機生成一個目錄,與遠程主機的版本庫同名。若是要指定不一樣的目錄名,能夠將目錄名做爲git clone命令的第二個參數。github
$ git clone <版本庫的網址> <本地目錄名>
git clone支持多種協議,除了HTTP(s)之外,還支持SSH、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協議下載速度最快,SSH協議用於須要用戶認證的場合。各類協議優劣的詳細討論請參考官方文檔。it