iOS开发之使用Git命令上传工程或者资源到Git平台

2018-01-12  本文已影响0人  KODIE

步骤

https://gitee.com/*******/KODOrientationDemo
git init

命令执行后会出现下面的截图:


Snip20180112_45.png
//这个.代表的是全部所有的文件
git add .
git commit -m "这里面就是你需要写的说明"
git remote add origin https://gitee.com/*******/KODOrientationDemo
git push -u origin master

问题注意

当我们将本地的文件推送到远程仓库的时候也就是第六步的时候,如果出现以下的报错:

Counting objects: 1424, done.
Delta compression using up to 4 threads.
Compressing objects: 100% (1327/1327), done.
error: unable to rewind rpc post data - try increasing http.postBuffer
error: RPC failed; curl 56 SSLRead() return error -36
fatal: The remote end hung up unexpectedlyB | 14.00 KiB/s   
Writing objects: 100% (1424/1424), 80.94 MiB | 1.88 MiB/s, done.
Total 1424 (delta 472), reused 0 (delta 0)
fatal: The remote end hung up unexpectedly
Everything up-to-date

那么就是告诉你,你的文件太大了,需要修改http传送文件的大小:

git config http.postBuffer 524288000

然后执行完命令后,再次进行推送,但是会卡在下面这句话:

Total 1424 (delta 472), reused 0 (delta 0)

其实不是卡,只是你在上传东西比较慢,等一会儿就好了。以上!!!

参考:

更全命令参考:http://blog.csdn.net/jtracydy/article/details/70402663

呆萌.png
上一篇下一篇

猜你喜欢

热点阅读