idea push项目代码到github中出现的问题
问题描述:idea控制台一直使用git push命令出现问题
在网上查找相关发现了问题出现所在
本地没有update到最新版本的项目(例如git上有README.md文件没有下载下来等)
git pull --rebase origin master
先把远程仓库最新版本的项目pull下来
git push origin master
然后就可以push项目代码了

idea push项目代码到github中出现的问题
问题描述:idea控制台一直使用git push命令出现问题
在网上查找相关发现了问题出现所在
本地没有update到最新版本的项目(例如git上有README.md文件没有下载下来等)
git pull --rebase origin master
先把远程仓库最新版本的项目pull下来
git push origin master
然后就可以push项目代码了