git将本地项目上传到远程仓库
Posted lucifer1997
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了git将本地项目上传到远程仓库相关的知识,希望对你有一定的参考价值。
1、cd mygit 打开项目文件夹
2、git init 初始化git
3、git remote add origin xxx(远程仓库地址) 添加远程库 git remote -v 查看远程库
4、git add . 添加当前文件夹下的文件
5、git commit -m "the first version" 提交修改
6、git push -u origin master 上传到远程仓库 后面可以直接使用git push origin master
git push错误failed to push some refs to的解决
参见https://blog.csdn.net/mbuger/article/details/70197532
git pull --rebase origin master
git push -u origin master
以上是关于git将本地项目上传到远程仓库的主要内容,如果未能解决你的问题,请参考以下文章