git安裝及第一次上傳程式碼遇到的問題

transquil發表於2020-09-30

1.在https://github.com/註冊或者登陸賬號

2.在github上新建project

3.安裝git客戶端https://www.git-scm.com/

4.設定idea

5.在idea上設定git的全域性變數:$git config --global user.name 'name'

                                                 $git config --global user.email  'email'

$git --list

$git config --list

6.上傳idea的程式碼

在terminal終端上敲入程式碼

(1)git init

  (2)git commit -m "註釋"

  (3)git remote add origin github地址

(4)git push -u origin master

7.錯誤:

Counting objects: 76, done.
Delta compression using up to 4 threads.
Compressing objects: 100% (64/64), done.
Wfatal: The remote end hung up unexpectedly bytes/s
rror: RPC failed; result=56, HTTP code = 200ytes/s
Writing objects: 100% (76/76), 24.52 MiB | 0 bytes/s, done.
Total 76 (delta 8), reused 0 (delta 0)
fatal: The remote end hung up unexpectedly
Everything up-to-date

原因:

1、網路問題:提交程式碼到github上,畢竟是外網,所以有所懷疑。不過從GitHub clone 專案速度很快,所以這點排除了。

2、git快取空間不夠:這是網路上大量提供的思路

解決方案:

## 設定http快取為1000M(大小可以根據需要自行更改) git config --global http.postBuffer 1048576000

 

 

 

 

相關文章