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

git push 报错fatal the current branch master has no upstream branch和Everything up-to-date

程序员文章站 2022-03-07 10:42:18
...

git push 之前先 git add .和git commit -m '描述性语言'(别让自己感觉自己很蠢。。。 哎)

1.fatal the current branch master has no upstream branch

建立远程分支关联即可 (本地远程master)

一种: git push --set-upstream https://gitee.com/huacong2504257840/zhugong_system.git master

另一种: git push -u origin master

另一种:

2.Everything up-to-date

git remote add origin 地址

原因:
1)没有git add .
2)没有git commit -m "提交信息"