When I have a merge-conflice in file
then Git shows the two different "versions" in the file like this
<<<<< HEAD
some lines
in this
file
======================
which makes it easy to step through the file and keep/delete what you want.
If I have pushed some changes from PC 1
while working on PC 2
I sometimes get this aborting-error that "some local changes would be overwitten, please stash or commit the changes" when I pull on PC 2
.
Is there a way to show the difference between local-changes and what is being pulled just like how the merge-conflict is handled?