broot 1.56.2

File browser and launcher
Documentation
mod ignore;
mod status;
mod status_computer;

pub use {
    ignore::{
        IgnoreChain,
        Ignorer,
    },
    status::{
        LineGitStatus,
        LineStatusComputer,
        TreeGitStatus,
    },
    status_computer::{
        clear_status_computer_cache,
        get_tree_status,
    },
};

use std::path::{
    Path,
    PathBuf,
};

/// return the closest parent (or self) containing a .git file
pub fn closest_repo_dir(mut path: &Path) -> Option<PathBuf> {
    loop {
        let c = path.join(".git");
        if c.exists() {
            return Some(path.to_path_buf());
        }
        path = match path.parent() {
            Some(path) => path,
            None => {
                return None;
            }
        };
    }
}