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-18 17:00:07 浏览: 189
}</td>
<td>
<a href="student?action=edit&id=${student.id}">编辑</a>
<a href="student?action=delete&id=${student.id}">删除</a>
</td>
</tr>
</c:这是一个 Git 命令的提示信息,意思是当前分支 master 没有远程跟踪分支。为了推forEach>
</table>
<br>
<a href="add.jsp">添加学生</a>
</body>
</html送当前分支并将远程分支设置为上游分支,需要使用命令 git push --set-upstream U201>
```
另一个名为 "edit.jsp",用于编辑学生的信息,代码如下:
```
<%@ page814580 master。如果希望自动为没有跟踪上游分支的分支设置远程跟踪分支,请参考 git help config 中的 push.autoSetupRemote。
相关问题
fatal: The current branch master has no upstream branch. To push the current branch and set the remote as upstream, use
这个错误信息表示当前的分支master没有上游分支(remote branch)。为了推送当前分支并将远程仓库设置为上游分支,可以使用以下命令:
git push --set-upstream origin master
这个错误通常出现在使用git init初始化本地仓库后,通过git remote add origin添加远程仓库地址,然后使用git push进行推送时。原因是没有将远程分支设置为当前分支的上游分支。
解决方法如下:
1. 首先,使用git fetch命令将远程仓库的最新数据拉取到本地仓库。
2. 然后,使用git checkout -b master origin/master命令将远程仓库的主分支拉取到本地并设置为本地仓库的主分支。
此时,本地仓库的数据已经与远程仓库同步,就好像使用git clone命令一样。接下来,你就可以使用git add、git commit和git push命令来添加、提交和推送数据了。
综上所述,解决这个问题的步骤如下:
1. 使用git fetch命令将远程仓库的最新数据拉取到本地仓库。
2. 使用git checkout -b master origin/master命令将远程仓库的主分支拉取到本地并设置为本地仓库的主分支。
3. 使用git add、git commit和git push命令来添加、提交和推送数据。
这些是今天使用到的一些Git指令。你可以使用git branch命令查看分支,使用git checkout命令切换到已有分支或新分支,使用git status命令显示当前项目状态,使用git commit命令提交项目到本地仓库,使用git push命令将本地仓库分支推送到远程仓库并建立分支,使用git merge命令更新分支(合并分支)。
希望这些信息对你有帮助!
fatal: The current branch master has no upstream branch. To push the current branch and set the remote as upstream,
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.
阅读全文