git pull is nothing but git fetch followed by git merge. So what you can do is
git fetch remote example_branch
git merge <commit_hash>
git pull is nothing but git fetch followed by git merge. So what you can do is
git fetch remote example_branch
git merge <commit_hash>