git clone的經常使用命令

遠程操做第一步,一般是從遠程主機克隆一個版本庫,這時就要用到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

相關文章
相關標籤/搜索