Masaya Suzuki
Masaya Suzuki
Can you check the `git` version you are using? `git version` should show your git CLI version. `git hook` command was introduced in Jan 8, 2022 at https://github.com/git/git/commit/96e7225b310cb45a9b1198fb7bb1621e638e3329. It seems...
It seems there is a bug. ``` set -ex git checkout main av stack branch branch-1 git commit --allow-empty -m "Commit on branch-1" av pr create --title "PR on branch-1"...
https://github.com/aviator-co/av/pull/436#issuecomment-2432946568 truely do not have any new commit between the parent and its child, so it should be errored out. https://github.com/aviator-co/av/issues/395 is that depending on the order of the operations,...
Communicated in a separate channel. Put the summary here. --- In order to track stacks of branches, av keeps track of not only the parent branch, but also the commit...
I think that we can do the same check as --autosquash and prompt the user to do the squash. So it's like: ``` Commits included in branch `feature-xyz` has an...
I think this is not about the size of the repo, but your branch structure seems to have a loop or something. (Unless you have millions of branches) Can you...
I think that there's a bit of misunderstanding. All you need would be add an interactive option to RebaseOpts at https://github.com/aviator-co/av/blob/ed184fe8384f62dc1ee8f2328ffc16d1350e4473/internal/sequencer/sequencer.go#L202, and run git rebase interactively so that users can...
Yes. I think the implementation is not matching with the description. Right now either --parent or --trunk is needed.
We rebase only topic branches on top of the latest master on the remote side. You would notice the remote tracking branch is always updated after `av stack sync`. We...
This "bi-directional contents syncing" is not a new request, so it would be better to describe its challenges. * If we think about very narrow, very specific, exceptional cases, we...