git-disjoint 0.16.2

A tool to batch commits by issue into GitHub PRs
Documentation
1
2
3
4
5
6
7
8
9
10
11
title "simplest case: one commit one issue"

base {
  file "src/lib.rs" "fn main() {}"
}

commit "feat: add widget\n\nTicket: AB-100" {
  file "src/widget.rs" "pub struct Widget;"
}

run "git-disjoint"