当前位置:   article > 正文

Git 常用命令_git trace git trace packet

git trace git trace packet

1 将本地已有项目提交到 Github 新建的仓库中

1.1 在本地项目目录中初始化 Git 配置
git init
  • 1
1.2 将本地项目和远程仓库关联
# 首次可直接添加关联
git remote add origin https://github.com/xxx/xxx.git

# 若关联已存在,可重新设置关联
git remote set-url origin https://github.com/xxx/xxx.git
  • 1
  • 2
  • 3
  • 4
  • 5
1.3 设置 Git 处理行尾的方式
# 若添加暂存区时仍有警告,可多次尝试
git config core.autocrlf true
  • 1
  • 2
1.4 添加文件到暂存区
git add .
  • 1
1.5 提交文件
git commit -m 'xxx'
git commit -m "xxx xxx" # 提交信息含空格,需要使用双引号
  • 1
  • 2
1.6 推送文件到远程仓库
# 首次提交,需初始化远端分支
git push --set-upstream origin master

# 之后可直接提交
git push
  • 1
  • 2
  • 3
  • 4
  • 5

2 错误及解决方式

2.1 远端意外挂断

错误

send-pack: unexpected disconnect while reading sideband packet
fatal: the remote end hung up unexpectedly
  • 1
  • 2

解决方案

git config http.postBuffer 524288000 # 缓冲设置
  • 1
2.2 远程调用协议失败

错误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
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/从前慢现在也慢/article/detail/696925
推荐阅读
相关标签
  

闽ICP备14008679号