fatal: The current branch master has no upstream branch. To push the current branch and set the remote as upstream, use git push --set-upstream U201814580 master To have this happen automatically for branches without a tracking upstream, see 'push.autoSetupRemote' in 'git help config'.
时间: 2024-02-17 19:05:09 浏览: 67
git init xxxx的时候报错: fatal: git 1.7.2 or later
4星 · 用户满意度95%
这个错误通常出现在你尝试将当前分支推送到远程仓库时,但该分支没有与远程分支建立关联。你可以使用以下命令将当前分支与远程分支关联并将其推送到远程仓库:
```
git push --set-upstream U201814580 master
```
这个命令将当前分支与名为master的远程分支关联,并将其推送到名为U201814580的远程仓库。
如果你不想每次手动设置upstream,可以使用以下命令自动设置:
```
git config --global push.default upstream
```
这个命令将自动为没有upstream的分支设置upstream。
阅读全文