1 uncommitted change would be overwritten by merge in visual studio 2013

Viewed 21261

while i am trying to pull a source to git it shows error as follows"An error occurred. Detailed message: 1 uncommitted change would be overwritten by merge"

I searched and tried those things like: commit in local repository and pull remove the untracked files

Both not worked for me.

2 Answers

I did the following and it cleared things up nicely:

git status
git pull
Related