Let's say that when I branch off from master, there's a file colors.txt
on the master
branch of my repo with these contents:
red
green
blue
yellow
I then branch off into my-branch
, in which I make the following changes:
- Delete
colors.txt
Add
red.txt
with these contents:red
Add
green.txt
with these contents:green
Add
blue.txt
with these contents:blue
Add
yellow.txt
with these contents:yellow
Now, there have been some changes on master that I need, so I want to merge. However, someone has also changed colors.txt
to:
red
green
blue
yellow
orange
purple
During my merge, the only information I get is that I deleted the file colors.txt
, so how can I see the changes that have been to the file on master so I can appropriately resolve the conflict (in this case, by adding the files orange.txt
and purple.txt
)?