av icon indicating copy to clipboard operation
av copied to clipboard

A command line tool to manage stacked PRs with Aviator

Results 81 av issues
Sort by recently updated
recently updated
newest added

Addressed https://github.com/aviator-co/av/issues/285 I confirmed it locally like the below ref: https://github.com/spf13/cobra/blob/main/site/content/completions/_index.md#debugging-1 ```sh $ go build -o av ./cmd/av/ $ ./av __complete stack branch --parent "" issue-244-br-1 test-2 issue-244-test new-one issue-244...

Bumps the golang group with 1 update: [github.com/golangci/golangci-lint](https://github.com/golangci/golangci-lint). Updates `github.com/golangci/golangci-lint` from 1.58.1 to 1.58.2 Release notes Sourced from github.com/golangci/golangci-lint's releases. v1.58.2 golangci-lint is a free and open-source project built by...

dependencies
go

This uses the new sequencer object to restack the branches. ![2024-05-16 13-55-08](https://github.com/aviator-co/av/assets/21878/7cf161c9-d904-4cf9-bdc7-359d561bbfa5)

Tested `deb` with local debian VM. Tested `PKGBUILD` with local Arch Linux. RPM not tested.

This is similar to git's sequencer, but it's for re-stacking branches. https://github.com/git/git/blob/master/sequencer.h This object is responsible for re-stacking branches based on the planned operations.

Currently, we support only remote HEAD as trunk (This is what we call `defaultBranch`, which is `refs/remotes/origin/HEAD`. This is typically a symbolic link to `refs/remotes/origin/master` or `main`). In addition to...

good first issue

https://github.com/spf13/cobra/blob/main/site/content/completions/_index.md#specify-dynamic-flag-completion Cobra supports autocompletion for args and flags. We can provide better completion candidates for these two: * `av stack branch`: `--parent` should have branches as candidates * `av stack...

good first issue

Run `av stack restack` after a cherry pick so that the stacks are aligned.

In general, this is a request to allow more fine-grained default behavior but the first ask was: * Can you default to pushing as a draft? and in general is...