File tree Expand file tree Collapse file tree 5 files changed +5
-5
lines changed
Expand file tree Collapse file tree 5 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -52,7 +52,7 @@ public override async Task<bool> Sure()
5252 {
5353 succ = await new Commands . Stash ( _repo . FullPath )
5454 . Use ( log )
55- . PushAsync ( "CHECKOUT_AUTO_STASH" ) ;
55+ . PushAsync ( "CHECKOUT_AUTO_STASH" , false ) ;
5656 if ( ! succ )
5757 {
5858 log . Complete ( ) ;
Original file line number Diff line number Diff line change @@ -57,7 +57,7 @@ public override async Task<bool> Sure()
5757 {
5858 succ = await new Commands . Stash ( _repo . FullPath )
5959 . Use ( log )
60- . PushAsync ( "CHECKOUT_AND_FASTFORWARD_AUTO_STASH" ) ;
60+ . PushAsync ( "CHECKOUT_AND_FASTFORWARD_AUTO_STASH" , false ) ;
6161 if ( ! succ )
6262 {
6363 log . Complete ( ) ;
Original file line number Diff line number Diff line change @@ -52,7 +52,7 @@ public override async Task<bool> Sure()
5252 {
5353 succ = await new Commands . Stash ( _repo . FullPath )
5454 . Use ( log )
55- . PushAsync ( "CHECKOUT_AUTO_STASH" ) ;
55+ . PushAsync ( "CHECKOUT_AUTO_STASH" , false ) ;
5656 if ( ! succ )
5757 {
5858 log . Complete ( ) ;
Original file line number Diff line number Diff line change @@ -136,7 +136,7 @@ public override async Task<bool> Sure()
136136 {
137137 succ = await new Commands . Stash ( _repo . FullPath )
138138 . Use ( log )
139- . PushAsync ( "CREATE_BRANCH_AUTO_STASH" ) ;
139+ . PushAsync ( "CREATE_BRANCH_AUTO_STASH" , false ) ;
140140 if ( ! succ )
141141 {
142142 log . Complete ( ) ;
Original file line number Diff line number Diff line change @@ -117,7 +117,7 @@ public override async Task<bool> Sure()
117117 }
118118 else
119119 {
120- var succ = await new Commands . Stash ( _repo . FullPath ) . Use ( log ) . PushAsync ( "PULL_AUTO_STASH" ) ;
120+ var succ = await new Commands . Stash ( _repo . FullPath ) . Use ( log ) . PushAsync ( "PULL_AUTO_STASH" , false ) ;
121121 if ( ! succ )
122122 {
123123 log . Complete ( ) ;
You can’t perform that action at this time.
0 commit comments