I pulled some changes from a remote repository:
git pull
There were conflicts:
Auto-merging src/app/models/budget-date.ts
CONFLICT (content): Merge conflict in src/app/models/budget-date.ts
Auto-merging src/app/components/timeline/timeline.component.ts
CONFLICT (content): Merge conflict in src/app/components/timeline/timeline.component.ts
Auto-merging src/app/components/timeline-date/timeline-date.component.ts
CONFLICT (content): Merge conflict in src/app/components/timeline-date/timeline-date.component.ts
Auto-merging src/app/components/expenses-log/expenses-log.component.ts
CONFLICT (content): Merge conflict in src/app/components/expenses-log/expenses-log.component.ts
Automatic merge failed; fix conflicts and then commit the result.
I merged the conflicts but I'm not not sure I merged the conflicts properly so I want to undo all the changes and redo the merge:
git status
On branch release-0.1
Your branch and 'origin/release-0.1' have diverged,
and have 1 and 2 different commits each, respectively.
(use "git pull" to merge the remote branch into yours)
You have unmerged paths.
(fix conflicts and run "git commit")
(use "git merge --abort" to abort the merge)
Changes to be committed:
modified: src/app/components/expenses-log/expenses-log.component.html
modified: src/app/components/expenses-log/expenses-log.component.scss
modified: src/app/services/timeline/timline.service.ts
Unmerged paths:
(use "git add <file>..." to mark resolution)
both modified: src/app/components/expenses-log/expenses-log.component.ts
both modified: src/app/components/timeline-date/timeline-date.component.ts
both modified: src/app/components/timeline/timeline.component.ts
both modified: src/app/models/budget-date.ts
How do I undo the changes and redo the merge?