fatal: The current branch master has no upstream branch. To push the current branch and set the remote as upstream,
时间: 2024-05-18 15:17:57 浏览: 179
The current branch is not configured for pull
you can use the following command:
```
git push --set-upstream origin master
```
This command will push your current branch (master) and set the remote branch (origin/master) as the upstream branch.
阅读全文