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 0b9b2fa commit f393b27Copy full SHA for f393b27
git-stacked-rebase.ts
@@ -1019,16 +1019,14 @@ async function createInitialEditTodoOfGitStackedRebase(
1019
1020
return [
1021
`${commitCommand} ${commit.sha()} ${commit.summary()}`,
1022
- // `branch-end-last ${branchEnd.name()}`, //
1023
- `branch-end-last ${initialBranch.name()}`,
+ `branch-end-last ${currentBranch.name()}`, //
1024
];
1025
}
1026
1027
if (branchEnd?.length) {
1028
1029
1030
- // `branch-end ${branchEnd.name()}`, //
1031
- `branch-end ${currentBranch.name()}`, //
+ ...branchEnd.map((x) => `branch-end ${x.name()}`), //
1032
1033
1034
0 commit comments