2016-06-28 11:57:32 +01:00
|
|
|
# git-imerge
|
|
|
|
|
2021-01-07 14:06:38 +00:00
|
|
|
> Perform a merge or rebase between two Git branches incrementally.
|
2016-06-28 11:57:32 +01:00
|
|
|
> Conflicts between branches are tracked down to pairs of individual commits, to simplify conflict resolution.
|
2019-06-03 01:06:36 +01:00
|
|
|
> More information: <https://github.com/mhagger/git-imerge>.
|
2016-06-28 11:57:32 +01:00
|
|
|
|
|
|
|
- Start imerge-based rebase (checkout the branch to be rebased, first):
|
|
|
|
|
|
|
|
`git imerge rebase {{branch_to_rebase_onto}}`
|
|
|
|
|
|
|
|
- Start imerge-based merge (checkout the branch to merge into, first):
|
|
|
|
|
|
|
|
`git imerge merge {{branch_to_be_merged}}`
|
|
|
|
|
|
|
|
- Show ASCII diagram of in-progress merge or rebase:
|
|
|
|
|
|
|
|
`git imerge diagram`
|
|
|
|
|
|
|
|
- Continue imerge operation after resolving conflicts (`git add` the conflicted files, first):
|
|
|
|
|
|
|
|
`git imerge continue --no-edit`
|
|
|
|
|
2017-04-21 10:45:54 +01:00
|
|
|
- Wrap up imerge operation, after all conflicts are resolved:
|
2016-06-28 11:57:32 +01:00
|
|
|
|
|
|
|
`git imerge finish`
|
2017-04-21 10:45:54 +01:00
|
|
|
|
|
|
|
- Abort imerge operation, and return to the previous branch:
|
|
|
|
|
|
|
|
`git-imerge remove && git checkout {{previous_branch}}`
|