1、出现No commits yet
错误原因:git没有载入提交的文件,
修改:按照括号中提示使用git add 提交名进行修改,或者git commit -m “提交信息” 修改
解决方法:
- 1、git add .
- 2、git commit -m “提交信息”
- 3、git push -u origin master或者git push –set-upstream origin master
2、出现error: failed to push some refs to “https://github.com/…
错误原因:由于远程库和本地库不一致导致的
解决方法:
git pull origin master –allow-unrelated-histories
该命令的意思是把远程库中的更新合并到本地库中。
3、出现error:src refspec master does not match any
错误原因:SRC ReFSPEC主控器不匹配任何,和第一个问题一样也就是仓库为空。
解决方法:
-
利用
git add xxx.py
指令,将所有的文件全部都添加,然后再进行git commit -m “init”将所有的文件commit,即
git commit -m “init”
-
然后在执行
git remote add origin xxxxxxxx.git
-
最后
git push -u origin master
4、出现fatal: pathspec ‘xxxx‘ did not match any files
错误原因:使用git pull 到本地后文件改了名字
解决方法:
- git add . 先把更新本地仓库
- git add xxxx 再提交单个文件
- git commit -m “xxxx” 添加注释
- 最后git push origin master
版权声明:本文为weixin_61552200原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。