git 学习地址
参考链接
报错如下
error: failed to push some refs to 'https://github.com/GDDXZ/RobotDenso.git'
hint: Updates were rejected because the remote contains work that you do
hint: not have locally. This is usually caused by another repository pushing
hint: to the same ref. You may want to first integrate the remote changes
hint: (e.g., 'git pull ...') before pushing again.
hint: See the 'Note about fast-forwards' in 'git push --help' for details.
解决方法:
1、git add . //添加文件到本地仓库
2、git commit -m "描述信息" //添加文件描述信息
3、git pull origin master // 更新本地版本库
4、git push -u origin master //把本地仓库推送至远程仓库