拉取远程分支而不结帐(从另一个分支)

Pulling remote branch without checkout (from another branch)

我正在参与一个有很多分支的项目,当我在我的分支上工作时,另一个分支(例如 master)在远程更新。我确实想在不更改当前分支(不签出)的情况​​下对其进行更改。这可能吗?如果可能,怎么做?

https://git-scm.com/docs/git-fetch:

git fetch origin master:master

试试看 git fetch <remote> <source>:<destination>

This 对我有效 git-forward-merge <source> <destination> 但它不适用于需要解决冲突的合并。