有没有办法在不输入分支名称的情况下将我的回购协议硬重置为上游版本?

Is there a way to hard reset my repo to the upstream version without typing the branch name?

我要找的是一种写法

git reset --hard origin/teamname/issue-12345-some-branch-name

如果我重置到的东西已经设置为当前上游分支,则没有所有冗余。

尝试

git reset --hard @{u}

@{u} means 当前分支的上游分支。