Mac将本地项目提交到GitHub

2020-02-11  本文已影响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

上一篇下一篇

猜你喜欢

热点阅读