stc

(Work in Progress)

Easy git rebasing of stacked feature branches

Audience

stc is recommended for a workflow where * individual contributors work in the same repository, * commits are made to dev branches that are forked from the main or a topic branch, * each dev branch is completely owned and used by the one contributor and * contributors are expected to provide a clean commit history (without merges) for review.

stc helps with managing entire stacks of these dev branches, i.e. when they are branched off of and depend on each other, allowing for a more rapid development. While one branch is undergoing review another branch can be stacked onto it and worked in.

Workflow

  1. Create a new branch.

    stc start my-new-feature

  2. Do some work.

    git add .... git commit .... Repeat.

  3. Meanwhile the base branch has merges from other contributors. Fetch everything.

    stc sync

  4. Rebase the branch, so it forks off at the head of the base branch.

    stc rebase

  5. Publish the branch by pushing it the first time.

    stc push

  6. Oh, there's a bad commit.

    git rebase -i HEAD~5

  7. Now the local branch and the remote branch divert. Push again to (forcefully) set remote branch to what local branch points at.

    stc push

Installation

Requires Rust toolchain to be installed.

sh cargo install stc

sh cargo install --git https://github.com/cloneable/stc

Usage

``` stc 0.1.0

[WIP] Easy stacking of dev branches in git repositories.

USAGE: stc

OPTIONS: -h, --help Print help information -V, --version Print version information

SUBCOMMANDS: clean Cleans any stc related refs and settings from repo. fix Adds, updates and deletes tracking refs if needed. help Print this message or the help of the given subcommand(s) init Initializes the repo and tries to set stc refs for any non-default branches. push Sets remote branch head to what local branch head points to. rebase Rebases current branch on top of its base branch. start Starts a new branch off of current branch. sync Fetches all branches and tags and prunes deleted ones. ```

Under the Hood

Tracking Refs

Stc uses custom refs to track branches:

Stc does not update/delete any refs outside refs/stc/.

Config

Stc puts a few settings into $REPO/.git/config:

Stc will only touch the repo's config. It's safe to make these settings in --global or --system.

Git Commands

Stc mainly uses two commands to manage branches:

In addition, stc uses a few more commands to help keeping track of things, like for-each-ref, update-ref, symbolic-ref, check-ref-format.