Git pull pulling in not possible because you have unmerged files
OriginalMarch 1, 2019Less than 1 minute
Solution
1.git pull will cause a merge operation to cause conflicts, and you need to resolve the conflicting files before successful pull
So execute the following command:
git add -u
git commit -m "Notes"
git pull2.Discarding local changes also resolves conflicts
Abandon local changes git reset --hard FETCH_HEAD, where FETCH_HEAD represents the commit point after the last successful pull, and then git pull