File tree 3 files changed +3
-3
lines changed
gitoxide-core/src/repository
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<()> {
79
79
Sorting :: BreadthFirst
80
80
} else {
81
81
// else if args.newest_first {
82
- Sorting :: ByCommitTimeNewestFirst
82
+ Sorting :: ByCommitTime ( Default :: default ( ) )
83
83
} ;
84
84
85
85
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 {
30
30
. context ( "Need committish as starting point" ) ?
31
31
. id ( )
32
32
. ancestors ( )
33
- . sorting ( Sorting :: ByCommitTimeNewestFirst )
33
+ . sorting ( Sorting :: ByCommitTime ( Default :: default ( ) ) )
34
34
. all ( ) ?;
35
35
for commit in commits {
36
36
let commit = commit?;
Original file line number Diff line number Diff line change @@ -52,7 +52,7 @@ pub(crate) mod function {
52
52
. context ( "Need committish as starting point" ) ?
53
53
. id ( )
54
54
. ancestors ( )
55
- . sorting ( Sorting :: ByCommitTimeNewestFirst )
55
+ . sorting ( Sorting :: ByCommitTime ( Default :: default ( ) ) )
56
56
. all ( ) ?;
57
57
58
58
let mut vg = match text {
You can’t perform that action at this time.
0 commit comments