Concepts

Branch and stack

We have two kinds of branches in Aviator CLI:

  • Trunk branches: Branches that PRs are merged into. Typically, main or master.

  • Topic branches: Branches that contain proposed changes against trunk branches.

A stack is a series of topic branches. Each branch has one parent branch, and the root of the stack has a trunk branch as a parent. One branch corresponds to one pull-request in GitHub. All pull-requests are ultimately merged into the trunk branch they are rooted. Aviator CLI internally tracks parent-child relationships of branches.

When a parent branch is needed, and it is not specified, it uses the remote HEAD as the default trunk branch. This is typically a branch that you set as the default branch on GitHub.

Sync

As you add more code to the stack, the state of the stack can be out of sync. For example:

  • The main branch on the remote gets updates by merging other pull-requests.

  • A new commit is added or a commit is amended in one of the parent branches.

  • Some of the parents are merged.

In those cases, you want to rebase your branches on top of the new commits. Sync is an action that does that for you. Aviator CLI uses the recorded branch parent to figure out which commit a branch should be rebased onto, and it pushes the new state to GitHub as needed.

Last updated