mirror of
https://github.com/starship/starship.git
synced 2026-06-24 02:01:36 +07:00
fix: implement fallback branch_name for bare git repos (#1035)
closes #686
This commit is contained in:
@@ -23,7 +23,10 @@ use std::collections::HashMap;
|
||||
/// - `✘` — A file's deletion has been added to the staging area
|
||||
pub fn module<'a>(context: &'a Context) -> Option<Module<'a>> {
|
||||
let repo = context.get_repo().ok()?;
|
||||
let branch_name = repo.branch.as_ref()?;
|
||||
// bare repos don't have a branch name, so `repo.branch.as_ref` would return None,
|
||||
// but git treats "master" as the default branch name
|
||||
let default_branch = String::from("master");
|
||||
let branch_name = repo.branch.as_ref().unwrap_or(&default_branch);
|
||||
let repo_root = repo.root.as_ref()?;
|
||||
let mut repository = Repository::open(repo_root).ok()?;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user