Autorebase automatically rebases all of your feature branches onto master
. If conflicts are found it will rebase to the last commit that doesn't cause conflicts.
By default, branches with an upstream are excluded.
You don't need to switch to any branch, the only limitation is that a branch that is checked out and not clean will not be rebased (though I may add that in future).
Here is a demo. Before autorebase we have a number of old feature branches.
Let's autorebase
!
This has attempted to rebase all of the branches. demo
and readme
were successfully rebased onto master
. However the other branches had conflicts, so they were not rebased all the way to master
. Instead they were rebased to just before the commit that caused the conflicts.
If a commit couldn't be fully rebased due to conflicts, it is marked as such and rebasing it won't be attempted again until its commit hash changes (e.g. to being edited or manually rebased).
Download a binary release from the Github releases page, or you can run
cargo install autorebase
Just run autorebase
in your repo. This will perform the following actions
- Update
master
, by pulling it with--ff-only
unless you have it checked out with pending changes. - Create a temporary work tree inside
.git/autorebase
(this is currently never deleted but you can do it manually withgit worktree remove autorebase_worktree
). - Get the list of branches that have no upstream (except with
--all-branches
), and aren't checked out with pending changes. - For each branch:
- Try to rebase it onto
master
. - If that fails due to conflicts, abort and try to rebase it as far as possible. There are two strategies for this (see below).
- If we didn't manage to rebase all the way to
master
, then mark the branch as "stuck" so it isn't attempted in future. To "unstick" it, rebase manually or add more commits to the branch.
- Try to rebase it onto
Full usage is:
autorebase
[--slow]
[--all-branches]
[--onto <target_branch>]
<target_branch>
is master
by default. If you develop on develop
you probably want autorebase --onto develop
.
There are two strategies to deal with conflicts. The default is fast; --slow
selects the slow method. The slow method simply tries rebasing onto master^
, master^^
, master^^^
and so on until one works or we get to the merge base.
The fast method tries to rebase master
onto the feature branch. It counts how many commits succeed, and assumes that these ones don't conflict, and the next commit must be the offending one. Then it aborts the rebase and rebases the feature branch to just before that commit.
The slow method is reliable but slow. The fast method is fast but may be suboptimal in some case, for instance if a conflict is only introduced temporarily.
- It probably won't be able to rebase branches that aren't trees, i.e. branches that contain merge commits. I haven't really tested this.
- It does everything by running
git
on the command line rather than through a library likelibgit2
, which probably isn't super robust. - There's no way to manually specify which branches to rebase. I may add an interface like
autorebase track my_branch
at some point. Maybe. autorebase
's worktree is never deleted so it uses up some disk space forever. You can delete it manually if you like.- Limited testing!