File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -712,7 +712,7 @@ async function createInitialEditTodoOfGitStackedRebase(
712712 const rebaseTodo = commitsWithBranchBoundaries
713713 . map ( ( { commit, branchEnd } , i ) => {
714714 if ( i === 0 ) {
715- assert ( ! ! branchEnd , " very first commit has a branch." ) ;
715+ assert ( ! ! branchEnd , ` very first commit has a branch ( ${ commit . sha ( ) } ).` ) ;
716716
717717 // return [];
718718 return [
@@ -725,7 +725,7 @@ async function createInitialEditTodoOfGitStackedRebase(
725725 }
726726
727727 if ( i === commitsWithBranchBoundaries . length - 1 ) {
728- assert ( ! ! branchEnd , " very last commit has a branch." ) ;
728+ assert ( ! ! branchEnd , ` very last commit has a branch. sha = ${ commit . sha ( ) } ` ) ;
729729
730730 return [
731731 `pick ${ commit . sha ( ) } ${ commit . summary ( ) } ` ,
You can’t perform that action at this time.
0 commit comments