win10下git本地仓库连接本地仓库问题解决

win10下git本地仓库连接远程仓库

写在前面

本文主要是记录连接时遇到的错误及解决方案,方便各位猿友再遇到相似问题时可以及时解决,少走弯路。

你我踟蹰行路,皆是行者

  • 参考文档:http://juygzs.top:4567/topic/6/windows10%E7%8E%AF%E5%A2%83%E4%B8%8Bgit%E8%BF%9E%E6%8E%A5github%E8%BF%9C%E7%A8%8B%E4%BB%93%E5%BA%93


问题清单

  1. error : src refspec master does not match any

  2. error : failed to push some refs to 'https://github.com/name/Demo_name.git'

  3. fatal : remote origin already exists

  4. fatal : 'oringin' does not appear to be a git repository

  5. fatal : Could not read from remote repository

  6. fatal : Updating an unborn branch with changes added to the index


解决方案

    • 目录中没有文件,无法提交空目录上去。

    • 增加文件

    • git add text

    • 添加注释

    • git commit -m 'comment_name'

    • 推上去

    • git push origin master

    • 先拉后推

    • 先将远程仓库pull进本地仓库

    • 然后再push出去

    • 已经建立了远程连接
    • 存储库不对

    • 重新调整存储库

    • 该点与上点一起
    • 致命的:更新未出生的分支,并将更改添加到索引

    • 在拉仓库时发生这个,不需要在意2333

你可能感兴趣的:(win10下git本地仓库连接本地仓库问题解决)