git pull 后仍然落后于原点

hum*_*me1 3 git

我有一个克隆的存储库,现在由 X 提交落后于 origin。git pull看起来它工作正常,压缩,接收等。但是当我尝试git status之后git pull,我仍然落后的消息。这个问题的原因可能是什么?

这是之后的消息git status

On branch release/xxxx
Your branch is behind 'origin/release/xxxx' by 351 commits, and can be fast-forwarded.
  (use "git pull" to update your local branch)
nothing to commit, working tree clean`
Run Code Online (Sandbox Code Playgroud)

Saj*_*han 5

拉取分支名称:

$ git pull origin release/xxxx    
Run Code Online (Sandbox Code Playgroud)

注意:您正在运行git pull origin/release/xxxx(在origin之后用空格代替 '/' )