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 092d8e2 commit 2bbecffCopy full SHA for 2bbecff
git-stacked-rebase.ts
@@ -1001,16 +1001,14 @@ async function createInitialEditTodoOfGitStackedRebase(
1001
1002
return [
1003
`${commitCommand} ${commit.sha()} ${commit.summary()}`,
1004
- // `branch-end-last ${branchEnd.name()}`, //
1005
- `branch-end-last ${initialBranch.name()}`,
+ `branch-end-last ${currentBranch.name()}`, //
1006
];
1007
}
1008
1009
if (branchEnd?.length) {
1010
1011
1012
- // `branch-end ${branchEnd.name()}`, //
1013
- `branch-end ${currentBranch.name()}`, //
+ ...branchEnd.map((x) => `branch-end ${x.name()}`), //
1014
1015
1016
0 commit comments