Answers for "git can't checkout because of unmerged files"

0

error: Pulling is not possible because you have unmerged files.

git reset --hard HEAD

If you dont want to merge the changes and still want to update your local then run:
This will reset your local with HEAD and then pull your remote using git pull.
Posted by: Guest on November-16-2021
3

git find unmerged files

git status
Posted by: Guest on July-17-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language