Error: no ha concluido su fusión (existe merge_head). Sugerencia: Por favor, comete sus cambios antes de fusionarse. FATAL: Salir por la fusión inacabada.
Undo the merge and pull again.
To undo a merge:
git merge --abort [Since git version 1.7.4]
git reset --merge [prior git versions]
Resolve the conflict.
Don't forget to add and commit the merge.
git pull now should work fine.
Lovely Lark