We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 53be4ac commit ee5687dCopy full SHA for ee5687d
git-stacked-rebase.ts
@@ -905,16 +905,14 @@ async function createInitialEditTodoOfGitStackedRebase(
905
906
return [
907
`${commitCommand} ${commit.sha()} ${commit.summary()}`,
908
- // `branch-end-last ${branchEnd.name()}`, //
909
- `branch-end-last ${initialBranch.name()}`,
+ `branch-end-last ${currentBranch.name()}`, //
910
];
911
}
912
913
if (branchEnd?.length) {
914
915
916
- // `branch-end ${branchEnd.name()}`, //
917
- `branch-end ${currentBranch.name()}`, //
+ ...branchEnd.map((x) => `branch-end ${x.name()}`), //
918
919
920
0 commit comments