赞
踩
git init
# 首次可直接添加关联
git remote add origin https://github.com/xxx/xxx.git
# 若关联已存在,可重新设置关联
git remote set-url origin https://github.com/xxx/xxx.git
# 若添加暂存区时仍有警告,可多次尝试
git config core.autocrlf true
git add .
git commit -m 'xxx'
git commit -m "xxx xxx" # 提交信息含空格,需要使用双引号
# 首次提交,需初始化远端分支
git push --set-upstream origin master
# 之后可直接提交
git push
错误
send-pack: unexpected disconnect while reading sideband packet fatal: the remote end hung up unexpectedly
- 1
- 2
解决方案
git config http.postBuffer 524288000 # 缓冲设置
- 1
错误1
error: RPC failed; curl 92 HTTP/2 stream 0 was not closed cleanly: CANCEL (err 8)
- 1
解决方案
git config http.version HTTP/1.1 # 降低协议版本
- 1
错误2
error: RPC failed; curl 18 transfer closed with outstanding read data remaining
- 1
解决方案
git clone http://github.com/xxx/xxx.git --depth 1 # 在当前目录(也可在其它目录)浅拷贝最新一次提交 cd repository-name # 进入只有最新一次提交记录的仓库 git fetch --unshallow # 下载之前所有的提交记录 # 接下来(如果刚才在当前目录浅拷贝): # 1、退回上级目录 # 2、删除大文件 # 3、复制目录下除 .git 文件夹 和 刚下载的仓库文件夹 之外 # 的所有文件(即提交失败的本地修改记录) # 4、进入刚刚下载的仓库文件夹 # 5、粘贴并覆盖 # 6、在当前目录 add commit push 即可 # # 善后工作(如果刚才在当前目录浅拷贝): # 1、退回上级目录 # 2、删去 除刚下载的仓库文件夹之外的所有文件 # 3、进入刚下载的仓库文件夹 # 4、全选并剪切 # 5、退回上级目录 # 6、粘贴 # 7、删去已经 empty 的刚下载的仓库文件夹
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
错误3
send-pack: unexpected disconnect while reading sideband packet
- 1
解决方案(Windows)
set GIT_TRACE_PACKET=1 set GIT_TRACE=1 set GIT_CURL_VERBOSE=1 git config --global core.compression 0 git clone --depth 1 <repo_URI> # cd to your newly created directory git fetch --unshallow git pull --all # 参考链接:https://stackoverflow.com/questions/66366582/github-unexpected-disconnect-while-reading-sideband-packet
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。