Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ref-based-insertions #7474

Draft
wants to merge 4 commits into
base: master
Choose a base branch
from
Draft

ref-based-insertions #7474

wants to merge 4 commits into from

Conversation

ndom91
Copy link
Contributor

@ndom91 ndom91 commented Mar 3, 2025

🧢 Changes

  • Follow-up to @Byron's insert commit at reference #7441
    • Ref based insertions
  • Extract empty commit state from living in branchCommitList
  • Includes frontend changes to allow selecting a new (empty) dependent branch as target for your commit

Assure that the commit-insertion respects the insertion position specified in the UI.

Tasks

  • fix it in backend
  • frontend provides ref-info to drive backend

☕️ Reasoning

Copy link

vercel bot commented Mar 3, 2025

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Comments Updated (UTC)
gitbutler-components ✅ Ready (Inspect) Visit Preview 💬 Add feedback Mar 3, 2025 0:09am
1 Skipped Deployment
Name Status Preview Comments Updated (UTC)
gitbutler-web ⬜️ Skipped (Inspect) Mar 3, 2025 0:09am

@github-actions github-actions bot added rust Pull requests that update Rust code @gitbutler/desktop labels Mar 3, 2025
Comment on lines +49 to +63
// Try to find parent based on branch position in stack
if (branches?.length) {
const currentBranchIndex = branches.findIndex((b) => b.name === branchName);

// If this branch has a "parent" branch in the stack
if (currentBranchIndex >= 0 && currentBranchIndex < branches.length - 1) {
const parentBranch = branches[currentBranchIndex + 1];
if (parentBranch?.name) {
const parentCommit = stackService.commitAt(projectId, stackId, parentBranch.name, 0)
.current.data;

if (parentCommit?.id) return parentCommit.id;
}
}
}
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Not sure if I'm reading correctly, but would this work if there are two empty branches, and you want to commit to the top one?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

No you're right, it wouldn't. First thing that comes to mind, we could while loop down the branches until we find the first branch with a commit that will act as parent.

Alternatively, it might be easier to have an API that returns something like StackBranch with an array of commits with basic metadata on it already, what do you think @mtsgrd @krlvi ?

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

In theory we could have any number of empty branches in between the one you're committing to and a previous commit (or base), so I'd prefer to avoid the looping altogether by making the API capable of committing directly to a branch without specifying the parent commit. Let's chat in person during once Kiril is in the office.

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think the API already takes a branch name that is currently used to insert into the correct 'bucket'. From there the parent commit could trivially be extracted.

A branch name will always be known, but it won't have to necessarily be pointing to a commit within the stack that the user sees. The V3 workspace information can represent such cases, but for now it should be sufficient if the UI passes the name it knows, or the parent commit, or both, the backend should be able to deal with it.

///
/// If there is ambiguity, this is what makes it ambiguous.
#[clap(long, short = 's')]
stack_segment_ref: Option<String>,
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@krlvi I'm wondering if stack_segment is a term we want to introduce? To me it would feel more natural to talk about branches.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

For the UI we are gonna have to keep user-friendly language.
On the backend, the term stack segment describes a range between two references (which is distinct from branches, which will technically include each other)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
@gitbutler/desktop rust Pull requests that update Rust code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants