美文网首页
使用Xcode push到远程仓库部分问题

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

作者: 肉身佛陀 | 来源:发表于2016-11-01 16:40 被阅读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文件,创建完成后不进行其他操作,直接push;
    • 方法二 :cd当前项目的目录,使用git pull命令取回远程主机某个分支的更新,再与本地的指定分支合并.
      git pull --rebase 远程项目地址 master

    个人使用时不创建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
    

    相关文章

      网友评论

          本文标题:使用Xcode push到远程仓库部分问题

          本文链接:https://www.haomeiwen.com/subject/gwvmuttx.html