美文网首页
Mac将本地项目提交到GitHub

Mac将本地项目提交到GitHub

作者: 喵喵的记事本 | 来源:发表于2020-02-11 14:03 被阅读0次

    参考:一步一步教你如何在GitHub上上传自己的项目

    https://blog.csdn.net/m0_37725003/article/details/80904824

    以下内容为自己整理,方便以后用。

    在项目的终端输入如下命令

    1、在当前项目的目录中生成本地的git管理

    git init

    2、将项目上所有的文件添加到仓库中。

    如果想添加某个特定的文件,只需把.换成这个特定的文件名即可。

    git add . 

    3、描述你对这次提交的注释,双引号里面的内容可根据需要修改

    git commit -m "这是我的某某项目,用来..."

    4、再输入git commit -m "first commit"时就会成功

    5、将本地的仓库关联到github上

    git remote add origin https://自己的仓库url地址

    6、将代码提交到仓库

    git push -u origin master

    常见错误

    1、git pull 失败 ,提示:fatal: refusing to merge unrelated histories或提示:failed to push some refs to git

    原因:两个 根本不相干的 git 库, 一个是本地库, 一个是远端库, 然后本地要去推送到远端, 远端觉得这个本地库跟自己不相干, 所以告知无法合并

    解决办法:把两段不相干的 分支进行强行合并

    git pull origin master --allow-unrelated-histories

    2、Git error: hint: Updates were rejected because the remote contains work that you do hint: not have locally. This is usually caused b..

    错误信息

    $ git pull origin master

    $ git push origin master

    相关文章

      网友评论

          本文标题:Mac将本地项目提交到GitHub

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