欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

git使用报错 ! [rejected] master -> master (fetch first) error: failed to push some refs to '略‘

程序员文章站 2022-04-07 14:54:04
...

步骤1

在使用git 对源代码进行push到gitHub时可能会出错,信息如下:
git使用报错 ! [rejected] master -> master (fetch first) error: failed to push some refs to '略‘

步骤2

出现错误的主要原因是github中的README.md文件不在本地代码目录中.
例如我的原因就是,我git打开的是Hello-world文件,而hello_world.php,README.md都在hello-world文件里。
git使用报错 ! [rejected] master -> master (fetch first) error: failed to push some refs to '略‘

步骤3

返回上级目录

cd ..

再重新打开hello-world.php文件

cd  hello-world

再次执行

git push

成功!

相关标签: git中push的使用