Git pull cannot pull remote data

prompt all the time with git pull-- rebase origin master! [rejected]

using git in win10

related codes

>git pull --rebase origin Order:Order
 ! [rejected]        Order-> Order(non-fast-forward)

how do you solve it, please?

Git
Mar.31,2022

1, check whether there is git permission 2, check whether git key is configured


(non-fast-forward) look at this prompt. Cannot fast forward, which means that the local branch is not a direct descendant of the remote branch.
needs to be merged manually.

execute git fetch before git merge xxxx

Menu