iOS开发之使用Git命令上传工程或者资源到Git平台
2018-01-12 本文已影响0人
KODIE
步骤
- 第一步:在网上Git平台或者GitHub上创建一个项目。本人推荐【码云】,拿到项目链接,比如说是:
https://gitee.com/*******/KODOrientationDemo
- 第二步:本地创建一个文件夹,进入该文件夹的目录下,然后
git init
命令执行后会出现下面的截图:
Snip20180112_45.png
- 第三步:将文件添加到此文件夹下,然后将文件从当前工作区提交到暂存区
//这个.代表的是全部所有的文件
git add .
- 第四步:将暂存区里面的内容提交到本地仓库git中
git commit -m "这里面就是你需要写的说明"
- 第五步:将本地仓库与远程仓库建立联系
git remote add origin https://gitee.com/*******/KODOrientationDemo
- 第六步:将本地仓库的内容push到远程仓库:
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