Wednesday, August 29, 2018

GIT ERRORS

Error 1:git pull failed you have not concluded your merge MERGE_HEAD exists.exiting because of unfinished merge.You have not concluded your merge (MERGE_HEAD exists)

  • your previous pull failed and went into conflict and the conflict wasn't resolved properly before the next pull.soln is to undo the merge and pull again.
  1. git merge --abort //cmd for git version>1.7.4  or git reset --merge //cmd for git version<1.7.4
  2. git pull