I am trying to copy a list of commits from the dev_branch to my current branch, using git rebase current_branch dev_branch
.
I see git rebase
does not complete successfully, and says:
both modified: file1.c
both modified: file2.c
When I open these files in an editor, I don't see any merge conflict. Can git automatically merge these for me?
Thank you.