Using the pit in Git that rebase encountered two could not apply XXXX

When using Git Rebase, the following command often appears
git rebase -i resumeerror: could not apply 6b442cc… accout infoWhen you have resolved this problem, run “git rebase –continue”.If you prefer to skip this patch, run “git rebase –skip” instead.To check out the original branch and stop rebasing, run “git rebase –abort”.Could not apply 6b442cc81d1feba15b2f851753483a82b1044438… accout info
You can use Git Status to see the cause of this problem

Both modified: SRC/resume/js/account/index/the js
Both added: SRC/resume/js/account/index/the vm
Both modified: SRC/resume/js/account/modules/the js
Both modified: SRC/resume/js/account/modules/info. The js
It tells us that we have modified these files at the same time and there is a conflict
So here’s the next step
1. Conflict resolution
2. The git add git commit
3. git rebase –continue

Read More: