I have a branch called editinfopage
.
I have used the commands to merge the branch with master:
git checkout master
git pull origin master
git merge editinfopage
Then I'm getting this error:
> Auto-merging routes/users.js
> CONFLICT (content): Merge conflict in routes/users.js
> Auto-merging models/user.js
> CONFLICT (content): Merge conflict in models/user.js
> Auto-merging frontend/src/services/auth.service.ts
> CONFLICT (content): Merge conflict in frontend/src/services/auth.service.ts
> Auto-merging frontend/src/pages/register/register.ts
> Auto-merging frontend/src/pages/login/login.ts
> CONFLICT (content): Merge conflict in frontend/src/pages/login/login.ts
> Auto-merging frontend/src/pages/editinfo/editinfo.ts
> CONFLICT (content): Merge conflict in frontend/src/pages/editinfo/editinfo.ts
> Auto-merging frontend/src/pages/editinfo/editinfo.scss
> CONFLICT (content): Merge conflict in frontend/src/pages/editinfo/editinfo.scss
> Auto-merging frontend/src/app/app.module.ts
> CONFLICT (content): Merge conflict in frontend/src/app/app.module.ts
> Auto-merging frontend/package.json
> CONFLICT (content): Merge conflict in frontend/package.json
> Auto-merging frontend/config.xml
> CONFLICT (content): Merge conflict in frontend/config.xml
> Removing frontend/back-end/server.js
> Removing frontend/back-end/routes/routes.js
> Removing frontend/back-end/package.json
> Removing frontend/back-end/package-lock.json
> Removing frontend/back-end/models/contacts.js
> Automatic merge failed; fix conflicts and then commit the result.`
How can I solve this issue?