使用Xcode push到远程仓库部分问题

2016-11-01  本文已影响697人  肉身佛陀

1. The local repository is out of date. Make sure all changes have been pulled from the remote repository and try again.

在使用Xcode中自带的git上传提交遇到的问题:

问题描述 : 已经在GitHub或码云上创建好项目,默认创建了Readme.md文件,或者创建完成后有过操作记录;此时你在通过Xcode push 的时候会报以上错误.
问题原因 : 远程仓库中的文件在本地没有
解决方法 :

个人使用时不创建Readme.md,创建仓库后,github给出步骤,粘贴如下,cd当前项目的目录,运行一下命令:

echo "# text" >> README.md
git init
git add README.md
git commit -m "first commit"
git remote add origin 仓库地址
git push -u origin master
上一篇下一篇

猜你喜欢

热点阅读