pub fn open_git_repo(path: &Path) -> Result<GitRepo, StorageError>Expand description
Opens an existing Git repository at the given path.
Args:
path: Filesystem path to the repository root.
Usage:
ⓘ
use auths_cli::factories::storage::open_git_repo;
let repo = open_git_repo(Path::new("/home/user/.auths"))?;