fatal: The current branch TqxBranch has no upstream branch. To push the current branch and set the remote as upstream, use git push --set-upstream origin TqxBranch To have this happen automatically for branches without a tracking upstream, see 'push
时间: 2024-01-09 08:04:21 浏览: 157
git切换到指定远程分支的方法
.default' in 'git help config'.
这个错误通常是因为你在当前分支上没有设置 upstream 分支,即没有指定当前分支所对应的远程分支。你可以使用以下命令来将当前分支与远程分支建立关联:
```
git push --set-upstream origin TqxBranch
```
执行该命令后,你就可以使用 `git push` 命令来推送当前分支的修改到远程分支了。如果你希望 Git 在推送分支时自动关联远程分支,可以设置 `push.default` 配置项。例如,你可以执行以下命令:
```
git config --global push.default simple
```
这样,当你使用 `git push` 命令推送当前分支时,Git 将会自动将当前分支与远程分支关联起来。
阅读全文