To be able to merge my local branch with master
by a pull request, I'm trying to update my local branch with the latest modification on master
. Since conflicts are complicated, I used this command to hand pick chunks of code modifications:
git checkout master --patch
Even after doing so, I cannot merge my local branch into master
by a pull request due to conflicts. Also running this command, might not work due to complex conflicts:
git merge master
I ran out of options, how can I update my local branch with latest modifications on master
without messing up anything?