File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
gitoxide-core/src/repository Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -79,7 +79,7 @@ fn run(args: Args) -> anyhow::Result<()> {
7979 Sorting :: BreadthFirst
8080 } else {
8181 // else if args.newest_first {
82- Sorting :: ByCommitTimeNewestFirst
82+ Sorting :: ByCommitTime ( Default :: default ( ) )
8383 } ;
8484
8585 let mut min_parents = args. min_parents . unwrap_or ( 0 ) ;
Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ pub(crate) mod function {
3030 . context ( "Need committish as starting point" ) ?
3131 . id ( )
3232 . ancestors ( )
33- . sorting ( Sorting :: ByCommitTimeNewestFirst )
33+ . sorting ( Sorting :: ByCommitTime ( Default :: default ( ) ) )
3434 . all ( ) ?;
3535 for commit in commits {
3636 let commit = commit?;
Original file line number Diff line number Diff line change @@ -52,7 +52,7 @@ pub(crate) mod function {
5252 . context ( "Need committish as starting point" ) ?
5353 . id ( )
5454 . ancestors ( )
55- . sorting ( Sorting :: ByCommitTimeNewestFirst )
55+ . sorting ( Sorting :: ByCommitTime ( Default :: default ( ) ) )
5656 . all ( ) ?;
5757
5858 let mut vg = match text {
You can’t perform that action at this time.
0 commit comments