File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ public override async Task<bool> Sure()
3737 {
3838 succ = await new Commands . Stash ( _repo . FullPath )
3939 . Use ( log )
40- . PushAsync ( "DROP_HEAD_AUTO_STASH" , true ) ;
40+ . PushAsync ( "DROP_HEAD_AUTO_STASH" , false ) ;
4141 if ( ! succ )
4242 {
4343 log . Complete ( ) ;
Original file line number Diff line number Diff line change @@ -56,7 +56,7 @@ public override async Task<bool> Sure()
5656 {
5757 succ = await new Commands . Stash ( _repo . FullPath )
5858 . Use ( log )
59- . PushAsync ( "REWORD_AUTO_STASH" ) ;
59+ . PushAsync ( "REWORD_AUTO_STASH" , false ) ;
6060 if ( ! succ )
6161 {
6262 log . Complete ( ) ;
Original file line number Diff line number Diff line change @@ -58,7 +58,7 @@ public override async Task<bool> Sure()
5858 {
5959 succ = await new Commands . Stash ( _repo . FullPath )
6060 . Use ( log )
61- . PushAsync ( IsFixupMode ? "FIXUP_AUTO_STASH" : "SQUASH_AUTO_STASH" ) ;
61+ . PushAsync ( IsFixupMode ? "FIXUP_AUTO_STASH" : "SQUASH_AUTO_STASH" , false ) ;
6262 if ( ! succ )
6363 {
6464 log . Complete ( ) ;
You can’t perform that action at this time.
0 commit comments