使用git clone命令轉殖檔案出現error

2021-10-14 07:52:17 字數 804 閱讀 3693

配製git:

1 git config --global user.name 「your name」

2 git config --global user.email 「[email protected]

3 #檢視配置是否生效

4 git config --list

5 先在自己的linux伺服器本地生成ssh key,使用命令 「ssh-keygen -t rsa -c 「[email protected]」」,your_email是你的email,執行時一路按回車就行,這會在當前使用者下生成1個公鑰id_rsa.pub和乙個私鑰id_rsa,id_rsa.pub後面配置git要用到。

6,去 gitlab,github設定id_rsa.pub

就可以clone了。

如果clone失敗可能如下問題:

1, 究其原因是因為curl的postbuffer的預設值太小,我們需要調整它的大小,在終端重新配置大小

這樣已經配置好了,如果你不確定,可以根據以下命令檢視postbuffer。

git config --list

使用git更新或提交中途有時出現the remote end hung up unexpectedly的異常,特別是資源庫在國外的情況下。此問題可能由網路原因引起。

git config --global http.lowspeedtime 999999 單位 秒

git clone命令使用

git clone 命令引數 usage git clone options v,verbose be more verbose q,quiet be more quiet progress force progress reporting n,no checkout don t create a ...

Git clone命令使用詳解

usage git clone options v,verbose be more verbose q,quiet be more quiet progress force progress reporting n,no checkout don t create a checkout bare c...

git clone 命令引數

git clone 命令引數 usage git clone options v,verbose be more verbose q,quiet be more quiet progress force progress reporting n,no checkout don t create a ...