I am trying to pull rebase with auto merging strategy,
m-hissain-sk01:sc hissain$ git status
On branch master
Your branch and 'origin/master' have diverged,
and have 47 and 3 different commits each, respectively.
(use "git pull" to merge the remote branch into yours)
error: could not apply b5f4d22... Refactored existing source
Resolve all conflicts manually, mark them as resolved with
"git add/rm <conflicted_files>", then run "git rebase --continue".
You can instead skip this commit: run "git rebase --skip".
To abort and get back to the state before "git rebase", run "git rebase --abort".
Could not apply b5f4d22... Refactored existing source
m-hissain-sk01:sc hissain$ git status
interactive rebase in progress; onto 2d4593d
Last command done (1 command done):
pick b5f4d22 Refactored existing source
Next commands to do (2 remaining commands):
pick 4298398 Implemented clean swift version
...
Unmerged paths:
(use "git reset HEAD <file>..." to unstage)
(use "git add/rm <file>..." as appropriate to mark resolution)
added by us: MyProj.xcodeproj/project.xcworkspace/contents.xcworkspacedata
added by us: MyProj.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
added by us: MyProj/Configs/Assets.xcassets/AppIcon.appiconset/Contents.json
...
Expected conflicts will be automatically resolved with ours version. But after running the command, I still see unstashed codes waiting to be resolved manually.
Why didn't it work?