1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
use anyhow::Context;
use git_repository as git;
use crate::OutputFormat;
pub fn previous_branches(
repo: git::Repository,
mut out: impl std::io::Write,
format: OutputFormat,
) -> anyhow::Result<()> {
let branches = repo
.head()?
.prior_checked_out_branches()?
.context("The reflog for HEAD is required")?;
match format {
OutputFormat::Human => {
for (name, id) in branches {
writeln!(out, "{} {}", id, name)?;
}
}
#[cfg(feature = "serde1")]
OutputFormat::Json => {
serde_json::to_writer_pretty(&mut out, &branches)?;
}
}
Ok(())
}