git-imerge:tldr:3a78e
The command "git imerge rebase ${branch_to_rebase_onto}" is not a valid Git command.
However, it seems like you may be combining two different Git commands: "git imerge" and "git rebase".
-
"git imerge" is not a built-in Git command but is likely referring to the "git-imerge" extension. "git-imerge" is an extension used for performing interactive merging of Git branches. It allows you to gradually merge changes between branches by dividing the merge process into smaller steps.
-
"git rebase" is a built-in Git command used to reapply commits from one branch onto another branch. It allows you to change the base of a branch, effectively moving the branch to a different commit while maintaining the branch's commit history.
It's important to note that the combination of "git imerge rebase" doesn't make sense as "git imerge" and "git rebase" are separate commands that serve different purposes.