git安裝及第一次上傳程式碼遇到的問題
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
相關文章
- 安裝kylin遇到的問題
- Laravel 安裝遇到的問題Laravel
- 在騰訊雲上安裝mysql遇到的問題MySql
- 安裝部署hzero遇到的問題
- PaddleOCR 安裝使用遇到的問題
- 在 Debian 64 位上安裝 wkhtmltopdf 時遇到的問題HTML
- 使用git遇到的問題Git
- 原始碼安裝apache(附遇到的問題及解決)原始碼Apache
- 安裝 Laravel Mix 中遇到的問題Laravel
- lumen安裝orangehill/iseed遇到的問題
- git 操作遇到問題Git
- Flutter-安裝步驟及安裝遇到的問題Flutter
- windows2003 的安裝以及安裝時遇到的問題Windows
- Springboot使用avue拖動上傳遇到的問題Spring BootVue
- 在Centos和Docker上安裝STF 遇到的若干問題總結CentOSDocker
- 【Redis】redis-cluster 安裝遇到的問題Redis
- Centos7安裝greenplum遇到的問題CentOS
- PYTORCH安裝過程以及遇到的問題PyTorch
- python中安裝qtdesigner、pyuic遇到的問題PythonQTUI
- mac11.2安裝air遇到的問題MacAI
- 一次上線遇到的DB2 dprop問題DB2
- 使用git add 遇到的小問題Git
- Vue使用中遇到的程式碼問題Vue
- Windows安裝Filebeat遇到問題總結Windows
- 解決macbook安裝burp suite遇到的問題MacUI
- RIDE匯入AutoItLibrary的安裝以及遇到的問題IDE
- git遇到問題safe.directoryGit
- Flutter 04: 圖解第一個程式遇到的安裝依賴問題Flutter圖解
- macbook 下安裝Goglang 以及安裝svn外掛所遇到的問題MacGo
- vue2.x工程安裝遇到的問題解答Vue
- Linux 安裝mysql 5.7.21 可能遇到的問題歸類LinuxMySql
- CentOS7安裝Docker遇到的問題筆記CentOSDocker筆記
- Python安裝cx_Oracle模組遇到的問題PythonOracle
- Django3.2安裝原始碼xadmin2步驟以及遇到的問題Django原始碼
- Linux上安裝gitLinuxGit
- 關於ubuntu安裝中過程遇到問題Ubuntu
- 安裝gcc過程中遇到相互依賴的問題GC
- pip安裝時遇到的問題集錦,持續更新!