diff --git a/git-cliff-core/src/repo.rs b/git-cliff-core/src/repo.rs index 8485713913..765b0cda4b 100644 --- a/git-cliff-core/src/repo.rs +++ b/git-cliff-core/src/repo.rs @@ -49,7 +49,7 @@ impl Repository { exclude_path: Option>, ) -> Result> { let mut revwalk = self.inner.revwalk()?; - revwalk.set_sorting(Sort::TIME | Sort::TOPOLOGICAL)?; + revwalk.set_sorting(Sort::TOPOLOGICAL)?; if let Some(range) = range { revwalk.push_range(&range)?; } else {