Skip to content

Commit fda00dd

Browse files
feat: first working version
1 parent 39e569f commit fda00dd

9 files changed

+2056
-1
lines changed

.envrc

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
layout python

.github/workflows/tests.yml

+56
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
name: Run tests
2+
3+
on:
4+
push:
5+
branches:
6+
- master
7+
pull_request:
8+
branches:
9+
- master
10+
11+
jobs:
12+
test:
13+
runs-on: ubuntu-22.04
14+
strategy:
15+
matrix:
16+
python-version: ["3.11"]
17+
18+
steps:
19+
- uses: actions/checkout@v3
20+
- name: Set up Python ${{ matrix.python-version }}
21+
uses: actions/setup-python@v4
22+
with:
23+
python-version: ${{ matrix.python-version }}
24+
- name: Running tests for ${{ matrix.python-version }} with tox
25+
uses: ymyzk/run-tox-gh-actions@main
26+
27+
release:
28+
name: release
29+
if: ${{ github.ref == 'refs/heads/master' }}
30+
needs:
31+
- test
32+
runs-on: ubuntu-22.04
33+
steps:
34+
- uses: google-github-actions/release-please-action@v3
35+
id: release
36+
with:
37+
release-type: simple
38+
package-name: gitstack
39+
- uses: actions/checkout@v3
40+
- uses: rickstaa/action-create-tag@v1
41+
if: ${{ steps.release.outputs.release_created }}
42+
with:
43+
tag: stable
44+
message: "Current stable release: ${{ steps.release.outputs.tag_name }}"
45+
tag_exists_error: false
46+
force_push_tag: true
47+
- run: sed -i 's/"dev"/"${{ steps.release.outputs.tag_name }}"/' gitstack.py
48+
- uses: actions/upload-release-asset@v1
49+
if: ${{ steps.release.outputs.release_created }}
50+
env:
51+
GITHUB_TOKEN: ${{ github.token }}
52+
with:
53+
upload_url: ${{ steps.release.outputs.upload_url }}
54+
asset_path: gitstack.py
55+
asset_name: gitstack.py
56+
asset_content_type: text/x-script.python

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -158,3 +158,5 @@ cython_debug/
158158
# and can be added to the global gitignore or merged into this file. For a more nuclear
159159
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
160160
#.idea/
161+
162+
.direnv/

.pylintrc

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
[MESSAGES CONTROL]
2+
disable=E1101,W0511,W0612,W0613,W0212,W0221,W0703,W0622,W1510,C,R
3+
4+
[BASIC]
5+
argument-rgx=[a-z_][a-z0-9_]{0,30}$
6+
variable-rgx=[a-z_][a-z0-9_]{0,30}$
7+
function-rgx=[a-z_][a-z0-9_]{0,30}$
8+
attr-rgx=[a-z_][a-z0-9_]{0,30}$
9+
method-rgx=([a-z_][a-z0-9_]{0,50}|setUp|tearDown|setUpClass|tearDownClass)$
10+
no-docstring-rgx=((__.*__)|setUp|tearDown)$
11+
12+
[REPORTS]
13+
reports=no
14+
msg-template={path}:{line}: [{msg_id}({symbol}), {obj}] {msg}

README.md

+50-1
Original file line numberDiff line numberDiff line change
@@ -1 +1,50 @@
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

Comments
 (0)