We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
gix
1 parent b6fbf05 commit 1536fd8Copy full SHA for 1536fd8
gitoxide-core/src/repository/log.rs
@@ -12,7 +12,7 @@ pub fn log(mut repo: gix::Repository, out: &mut dyn std::io::Write, path: Option
12
}
13
14
fn log_all(repo: gix::Repository, out: &mut dyn std::io::Write) -> Result<(), anyhow::Error> {
15
- let head = repo.head()?.peel_to_commit_in_place()?;
+ let head = repo.head()?.peel_to_commit()?;
16
let topo = gix::traverse::commit::topo::Builder::from_iters(&repo.objects, [head.id], None::<Vec<gix::ObjectId>>)
17
.build()?;
18
0 commit comments