Git: Pulling is not possible because you have unmerged files
Some times I receive this message because local file file changes conflict and requires merging. To revert local changes in this scenario, use below command
git reset --hard HEAD
If already committed to local branch and need to revert the last committed changes,
git reset --hard HEAD~1
No comments:
Post a Comment