@@ -98,6 +98,7 @@ enum Op {
98
98
Fold ,
99
99
Paths ,
100
100
Squash ( Option < std:: collections:: HashMap < git2:: Oid , ( String , String , String ) > > ) ,
101
+ Start ( git2:: Oid , Filter ) ,
101
102
Linear ,
102
103
103
104
RegexReplace ( regex:: Regex , String ) ,
@@ -223,6 +224,9 @@ fn spec2(op: &Op) -> String {
223
224
Op :: Exclude ( b) => {
224
225
format ! ( ":exclude[{}]" , spec( * b) )
225
226
}
227
+ Op :: Start ( id, b) => {
228
+ format ! ( ":start={}[{}]" , id, spec( * b) )
229
+ }
226
230
Op :: Workspace ( path) => {
227
231
format ! ( ":workspace={}" , parse:: quote( & path. to_string_lossy( ) ) )
228
232
}
@@ -374,6 +378,14 @@ fn apply_to_commit2(
374
378
) )
375
379
. transpose ( )
376
380
}
381
+ Op :: Start ( id, filter) => {
382
+ if * id == commit. id ( ) {
383
+ return apply_to_commit2 ( & to_op ( * filter) , commit, transaction) ;
384
+ } else {
385
+
386
+ return apply_to_commit2 ( & Op :: Nop , commit, transaction) ;
387
+ }
388
+ } ,
377
389
_ => {
378
390
if let Some ( oid) = transaction. get ( filter, commit. id ( ) ) {
379
391
return Ok ( Some ( oid) ) ;
@@ -619,6 +631,7 @@ fn apply2<'a>(
619
631
Op :: Squash ( None ) => Ok ( tree) ,
620
632
Op :: Squash ( Some ( _) ) => Err ( josh_error ( "not applicable to tree" ) ) ,
621
633
Op :: Linear => Ok ( tree) ,
634
+ Op :: Start ( _, _) => Err ( josh_error ( "not applicable to tree" ) ) ,
622
635
623
636
Op :: RegexReplace ( regex, replacement) => {
624
637
tree:: regex_replace ( tree. id ( ) , & regex, & replacement, transaction)
0 commit comments