gitoxide_core/repository/revision/
previous_branches.rs

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
use anyhow::Context;

use crate::OutputFormat;

pub fn previous_branches(
    repo: gix::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 = "serde")]
        OutputFormat::Json => {
            serde_json::to_writer_pretty(&mut out, &branches)?;
        }
    }
    Ok(())
}