Erreur: vous n'avez pas conclu votre fusion (Merge_head existe). Astuce: s'il vous plaît, engagez vos modifications avant de fusionner. Fatal: sortant à cause de la fusion inachevée.
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