So I am still newish with git and have just discovered the rebase
option to update a branch with master
.
I ran:
git checkout mybranch
git rebase master
Now I have a few merge conflicts. Is this the same as fixing normal merge conflicts? I want to accept masters
changes. I get something like
<<<<<<< 6tyuhjhgty54rtfghgftr
=======
<bunch of code here>
>>>>>>> Updates from Company
Which is which?