|
1 |
| -# gitstack |
| 1 | +# gitstack |
| 2 | + |
| 3 | +A utility for stacking branch and github pull requests |
| 4 | + |
| 5 | +- [Installation](#installation) |
| 6 | +- [Quick start](#quick-start) |
| 7 | +- [Concepts](#concepts) |
| 8 | +- [Why gitstack](#why-gitstack) |
| 9 | + |
| 10 | +## Installation |
| 11 | + |
| 12 | +```bash |
| 13 | +curl -L https://github.com/stevearc/gitstack/releases/latest/download/gitstack.py -o ~/.local/share/gitstack.py |
| 14 | +git config --global alias.stack '!python ~/.local/share/gitstack.py' |
| 15 | +``` |
| 16 | + |
| 17 | +Now you can use these commands with `git stack`. Feel free to shorten the alias to something quicker to type. |
| 18 | + |
| 19 | +## Quick start |
| 20 | + |
| 21 | +```bash |
| 22 | +# create a branch and make commits as normal |
| 23 | +git stack create --split # create a new branch for each commit |
| 24 | +git stack pr # create pull requests for each branch |
| 25 | +git stack publish # publish the pull requests |
| 26 | +# go to github and add summary, reviewers, test plan, etc |
| 27 | + |
| 28 | +# If changes are requested: |
| 29 | +git stack first # check out the branch for the first PR |
| 30 | +# make fixes |
| 31 | +git commit -am "fixes" # add new commits for fixes |
| 32 | +git push |
| 33 | +# optionally, you can restack the rest of the branches |
| 34 | +git stack restack |
| 35 | +# optionally, you can force push the restacked branches |
| 36 | +git stack push -f -a |
| 37 | +``` |
| 38 | + |
| 39 | +You can always learn more about the commands with `git stack -h` or `git stack <cmd> -h`. |
| 40 | + |
| 41 | +## Concepts |
| 42 | + |
| 43 | +gitstack is just trying to automate the work that you would have to do yourself. There is no magic, just a lot of rebasing branches onto other branches. |
| 44 | +However, it _does_ need to keep track of how the branches are stacked in order to do a proper restack. To do this, **gitstack adds a `prev-branch: <branch>` label to the commit message of the first commit in a branch**. This is the _only_ data that gitstack stores anywhere, and you should feel empowered to edit it by hand if you like. |
| 45 | + |
| 46 | +`git stack create` will turn the current linear history of branches into a stack, overriding any previous stack. If you need to reorder branches, insert new ones, or make other changes, do so with normal git commands and then re-run `git stack create`. |
| 47 | + |
| 48 | +## Why gitstack |
| 49 | + |
| 50 | +I have found all other tools I have tried to be excessively magic. They make use of storing information locally, which makes it hard to sync a stack and work on it from another machine, or they require you to always interact with the stack using their commands. This tool does the minimal amount possible to improve stacking ergonomics, and then gets out of your way. You're still able to use raw git commands like usual. |
0 commit comments