refactor autorebase a bit
This commit is contained in:
parent
67435c5db2
commit
66db59d11f
|
@ -23,6 +23,10 @@ With this graph built up, the tool can:
|
|||
- Log a simple list of all PRs in the stack (+ dependencies) to stdout.
|
||||
- Automatically update the stack + push after making local changes.
|
||||
|
||||
Some caveats:
|
||||
|
||||
- The `autorebase` command is not entirely idempotent in cases where it doesn't complete fully. In particular, if all local branches are updated but the final push doesn't go through, you can't run the command again without performing a (manual) reset. This happens because the command relies on remote tracking branches as signposts (this is true at the moment, but it's something of an artifical limitation - there's no reason we can't use a custom signpost of some kind to get around this) to make sure we don't cherry-pick too far.
|
||||
|
||||
## Usage
|
||||
|
||||
```bash
|
||||
|
|
172
src/git.rs
172
src/git.rs
|
@ -5,6 +5,8 @@ use git2::build::CheckoutBuilder;
|
|||
use git2::{
|
||||
CherrypickOptions,
|
||||
Repository, Sort,
|
||||
Revwalk, Oid, Commit,
|
||||
Index
|
||||
};
|
||||
|
||||
use std::error::Error;
|
||||
|
@ -28,7 +30,7 @@ fn loop_until_confirm(prompt: &str) {
|
|||
}
|
||||
}
|
||||
|
||||
/// or all open pull requests in the graph, generate a series of commands
|
||||
/// For all open pull requests in the graph, generate a series of commands
|
||||
/// (force-pushes) that will rebase the entire stack. The "PREBASE" variable
|
||||
/// is a base for the first branch in the stack (essentially a "stop cherry-picking
|
||||
/// here" marker), and is required because of our squash-merge workflow.
|
||||
|
@ -78,54 +80,60 @@ pub fn generate_rebase_script(deps: FlatDep) -> String {
|
|||
out
|
||||
}
|
||||
|
||||
pub async fn perform_rebase(
|
||||
deps: FlatDep,
|
||||
repo: &Repository,
|
||||
remote: &str,
|
||||
) -> Result<(), Box<dyn Error>> {
|
||||
let deps = deps
|
||||
.iter()
|
||||
.filter(|(dep, _)| *dep.state() == PullRequestStatus::Open)
|
||||
.collect::<Vec<_>>();
|
||||
fn oid_to_commit(repo: &Repository, oid: Oid) -> Commit {
|
||||
repo.find_commit(oid).unwrap()
|
||||
}
|
||||
|
||||
let (pr, _) = deps[0];
|
||||
fn head_commit(repo: &Repository) -> Commit {
|
||||
repo.find_commit(repo.head().unwrap().target().unwrap()).unwrap()
|
||||
}
|
||||
|
||||
let base = remote_ref(remote, pr.base());
|
||||
let base = repo.revparse_single(&base).unwrap();
|
||||
let base = base.as_commit().unwrap();
|
||||
fn checkout_commit(repo: &Repository, commit: &Commit, options: Option<&mut CheckoutBuilder>) {
|
||||
repo.checkout_tree(&commit.as_object(), options).unwrap();
|
||||
repo.set_head_detached(commit.id()).unwrap();
|
||||
}
|
||||
|
||||
let head = pr.head();
|
||||
let head = repo.revparse_single(&head).unwrap();
|
||||
let head = head.as_commit().unwrap();
|
||||
fn rev_to_commit<'a>(repo: &'a Repository, rev: &str) -> Commit<'a> {
|
||||
let commit = repo.revparse_single(rev).unwrap();
|
||||
let commit = commit.into_commit().unwrap();
|
||||
commit
|
||||
}
|
||||
|
||||
let mut stop_cherry_pick_at = repo.merge_base(base.id(), head.id()).unwrap();
|
||||
/// Commit and checkout `index`
|
||||
fn create_commit<'a>(repo: &'a Repository, index: &mut Index, message: &str) -> Commit<'a> {
|
||||
let tree = index.write_tree_to(&repo).unwrap();
|
||||
let tree = repo.find_tree(tree).unwrap();
|
||||
|
||||
println!("Checking out {:?}", base);
|
||||
repo.checkout_tree(&base.as_object(), None).unwrap();
|
||||
repo.set_head_detached(base.id()).unwrap();
|
||||
|
||||
let mut push_refspecs = vec![];
|
||||
|
||||
for (pr, _) in deps {
|
||||
println!("Working on PR: {:?}", pr.head());
|
||||
|
||||
let from = repo.revparse_single(&pr.head()).unwrap();
|
||||
let from = from.as_commit().unwrap();
|
||||
|
||||
let mut walk = repo.revwalk().unwrap();
|
||||
walk.set_sorting(Sort::TOPOLOGICAL).unwrap();
|
||||
walk.set_sorting(Sort::REVERSE).unwrap();
|
||||
walk.push(from.id()).unwrap();
|
||||
walk.hide(stop_cherry_pick_at).unwrap();
|
||||
|
||||
// TODO: Simplify by using rebase instead of cherry-pick
|
||||
// TODO: Skip if remote/<branch> is the same SHA as <branch>
|
||||
for from in walk {
|
||||
let from = repo.find_commit(from.unwrap()).unwrap();
|
||||
let to = repo
|
||||
.find_commit(repo.head().unwrap().target().unwrap())
|
||||
let signature = repo.signature().unwrap();
|
||||
let commit = repo
|
||||
.commit(
|
||||
None,
|
||||
&signature,
|
||||
&signature,
|
||||
message,
|
||||
&tree,
|
||||
&[&head_commit(repo)]
|
||||
)
|
||||
.unwrap();
|
||||
|
||||
let commit = oid_to_commit(&repo, commit);
|
||||
|
||||
let mut cb = CheckoutBuilder::new();
|
||||
cb.force();
|
||||
|
||||
checkout_commit(&repo, &commit, Some(&mut cb));
|
||||
|
||||
// "Complete" the cherry-pick. There is likely a better way to do
|
||||
// this that I haven't found so far.
|
||||
repo.cleanup_state().unwrap();
|
||||
|
||||
commit
|
||||
}
|
||||
|
||||
fn cherry_pick_range(repo: &Repository, walk: &mut Revwalk) {
|
||||
for from in walk {
|
||||
let from = oid_to_commit(&repo, from.unwrap());
|
||||
|
||||
if from.parent_count() > 1 {
|
||||
panic!("Exiting: I don't know how to deal with merge commits correctly.");
|
||||
}
|
||||
|
@ -143,50 +151,60 @@ pub async fn perform_rebase(
|
|||
if index.has_conflicts() {
|
||||
let prompt = "Conflicts! Resolve manually and `git add` each one (don't run any `git cherry-pick` commands, though).";
|
||||
loop_until_confirm(prompt);
|
||||
|
||||
// Reload index from disk
|
||||
index = repo.index().unwrap();
|
||||
index.read(true).unwrap();
|
||||
}
|
||||
|
||||
let tree = index.write_tree_to(&repo).unwrap();
|
||||
let tree = repo.find_tree(tree).unwrap();
|
||||
|
||||
let signature = repo.signature().unwrap();
|
||||
let commit = repo
|
||||
.commit(
|
||||
None,
|
||||
&signature,
|
||||
&signature,
|
||||
&from.message().unwrap(),
|
||||
&tree,
|
||||
&[&to],
|
||||
)
|
||||
.unwrap();
|
||||
let commit = repo.find_commit(commit).unwrap();
|
||||
|
||||
let mut cb = CheckoutBuilder::new();
|
||||
cb.force();
|
||||
repo.checkout_tree(&commit.as_object(), Some(&mut cb))
|
||||
.unwrap();
|
||||
repo.set_head_detached(commit.id()).unwrap();
|
||||
|
||||
// "Complete" the cherry-pick. There is likely a better way to do
|
||||
// this that I haven't found so far.
|
||||
repo.cleanup_state().unwrap();
|
||||
create_commit(&repo, &mut index, from.message().unwrap());
|
||||
}
|
||||
}
|
||||
|
||||
// Update local branch
|
||||
let head = repo.head().unwrap().target().unwrap();
|
||||
let head = repo.find_commit(head).unwrap();
|
||||
repo.branch(pr.head(), &head, true).unwrap();
|
||||
pub async fn perform_rebase(
|
||||
deps: FlatDep,
|
||||
repo: &Repository,
|
||||
remote: &str,
|
||||
) -> Result<(), Box<dyn Error>> {
|
||||
let deps = deps
|
||||
.iter()
|
||||
.filter(|(dep, _)| *dep.state() == PullRequestStatus::Open)
|
||||
.collect::<Vec<_>>();
|
||||
|
||||
// Use remote branch as boundary for next cherry-pick
|
||||
let from = repo
|
||||
.revparse_single(&remote_ref(remote, pr.head()))
|
||||
.unwrap();
|
||||
let from = from.as_commit().unwrap();
|
||||
let (pr, _) = deps[0];
|
||||
|
||||
let base = rev_to_commit(&repo, &remote_ref(remote, pr.base()));
|
||||
let head = rev_to_commit(&repo, pr.head());
|
||||
let mut stop_cherry_pick_at = repo.merge_base(base.id(), head.id()).unwrap();
|
||||
|
||||
println!("Checking out {:?}", base);
|
||||
checkout_commit(&repo, &base, None);
|
||||
|
||||
let mut push_refspecs = vec![];
|
||||
|
||||
for (pr, _) in deps {
|
||||
println!("\nWorking on PR: {:?}", pr.head());
|
||||
|
||||
let from = rev_to_commit(&repo, pr.head());
|
||||
|
||||
let mut walk = repo.revwalk().unwrap();
|
||||
walk.set_sorting(Sort::TOPOLOGICAL).unwrap();
|
||||
walk.set_sorting(Sort::REVERSE).unwrap();
|
||||
walk.push(from.id()).unwrap();
|
||||
walk.hide(stop_cherry_pick_at).unwrap();
|
||||
|
||||
// TODO: Simplify by using rebase instead of cherry-pick
|
||||
// TODO: Skip if remote/<branch> is the same SHA as <branch> (only until the first cherry-pick)
|
||||
cherry_pick_range(&repo, &mut walk);
|
||||
|
||||
// Update local branch so it points to the stack we're building now
|
||||
repo.branch(pr.head(), &head_commit(&repo), true).unwrap();
|
||||
|
||||
// Use remote branch as boundary for the next cherry-pick
|
||||
let from = rev_to_commit(&repo, &remote_ref(remote, pr.head()));
|
||||
stop_cherry_pick_at = from.id();
|
||||
|
||||
push_refspecs.push(format!("refs/heads/{}:refs/heads/{}", pr.head(), pr.head()));
|
||||
push_refspecs.push(format!("{}:refs/heads/{}", head_commit(&repo).id(), pr.head()));
|
||||
}
|
||||
|
||||
let repo_dir = repo.workdir().unwrap().to_str().unwrap();
|
||||
|
|
Loading…
Reference in New Issue