git-stacked-rebase

0.6.1 • Public • Published

git-stacked-rebase

stacked diffs in git, seamlessly.

why jump through branches manually, when we can extend git rebase -i instead?

a branch is just a reference to some commit (literally, it's a single-line file that contains a 40-character commit SHA -- check your .git/refs/ folder). why not just work on your latest feature branch, rebase comfortably, and then have your tool automatically update the partial branches to make them point to the correct new commits?

from those partial branches, you can create pull requests. with this workflow, you get to comfortably iterate in a single branch; your teammates get the benefits of reviewing smaller PRs (when they're ready). win win. that's literally all.


git-stacked-rebase is not specific to any host like github or gitlab. it's "specific" to git itself.

it's not only a CLI either - it's first and foremost a javascript library, and the CLI is just a tool that builds on top of the library.

in the future, we could create host-specific adapters. they could be used to automate some simple tasks, such as creating a pull request, or changing the base branch of a pull request, etc.

Progress

follow http://kiprasmel.github.io/notes/git-stacked-rebase.html

Setup

dependencies:

  • node.js
  • git
  • something else i probably forgot
npm i -g git-stacked-rebase

# optional:
git config --global alias.stacked-rebase git-stacked-rebase
git config --global alias.rr             git-stacked-rebase

Usage

cd repo/

# checkout your remote branches locally (until we automate it w/ a command?). 
# then, checkout to the latest one.
# then:

git-stacked-rebase --help

Readme

Keywords

none

Package Sidebar

Install

npm i git-stacked-rebase

Weekly Downloads

0

Version

0.6.1

License

UNLICENSED

Unpacked Size

177 kB

Total Files

68

Last publish

Collaborators

  • kipras