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 0ec0d4d commit a4ac6f0Copy full SHA for a4ac6f0
git-stacked-rebase.ts
@@ -910,16 +910,14 @@ async function createInitialEditTodoOfGitStackedRebase(
910
911
return [
912
`${commitCommand} ${commit.sha()} ${commit.summary()}`,
913
- // `branch-end-last ${branchEnd.name()}`, //
914
- `branch-end-last ${initialBranch.name()}`,
+ `branch-end-last ${currentBranch.name()}`, //
915
];
916
}
917
918
if (branchEnd?.length) {
919
920
921
- // `branch-end ${branchEnd.name()}`, //
922
- `branch-end ${currentBranch.name()}`, //
+ ...branchEnd.map((x) => `branch-end ${x.name()}`), //
923
924
925
0 commit comments