I saw some similar questions but there are all about git push ,not git pull.
In order keep my local branch a_branch updated with the remote master branch.
I run:
git pull origin HEAD:master
But I received:
[rejected] master -> master (non-fast-forward)
Then I tried:
git fetch origin master
git pull origin HEAD:master
Still same error.
Any friend can help?