I started with a git rebase master
and after 1 skip I encountered this conflict:
CONFLICT (content): Merge conflict in web/app/components/Exchange/Exchange.jsx
...
<<<<<<< HEAD
let highestBid = bids.length > 0 ? bids.reduce((a, b) => {
return a >= b.price_full ? a : b.price_full;
}, 0) : 0;
=======
let highestBid = bids.length > 0 ? bids.reduce((a, b) => {
return a >= b.price_full ? a : b.price_full;
}, 0) : 0;
>>>>>>> Minor exchange fixes, ...
The looked the same but since I have seen this before I double-checked the code manually. Both blocks are the same hash after I copy and pasted them to two files..
Any idea on what has happened and how to automatically resolve conflicts like this?
git version 1.9.1