Git Disjoint

alt-text

git disjoint groups commits by issue onto unique branches.

Installing

Cargo

cargo +nightly install git-disjoint

Manual

Download a release compatible with your OS and architecture from the [Releases] page, extract the binary, and put it somewhere in your $PATH.

Assumptions

git disjoint may add value to your workflow if you

Goals

git disjoint automates referencing issues in your development work ([Jira]) so you can focus on development.

Workflow

  1. [Add all your commits to one branch].

  2. In each commit message, include a reference to the relevant ticket.

    For example, use the Jira automation format:

    Ticket: COOL-123

    or

    Closes Ticket: COOL-123

    Or use the GitHub [format]:

    Closes 123

  3. When you're ready to:

    1. turn the set of commits addressing each ticket into its own feature branch,
    2. push that branch, and
    3. create a draft PR,

    run git disjoint.

Caveats