mirror of
https://github.com/jesseduffield/lazygit.git
synced 2025-04-04 22:34:39 +02:00
fix incorrect checked out branch display
This commit is contained in:
parent
9e5c04d57d
commit
694b192b74
@ -183,6 +183,9 @@ func getGitBranches() []Branch {
|
||||
for i, line := range branchLines {
|
||||
branches = append(branches, branchFromLine(line, i))
|
||||
}
|
||||
} else {
|
||||
// TODO: DRY this up
|
||||
branches = append(branches, branchFromLine(gitCurrentBranchName(), 0))
|
||||
}
|
||||
branches = getAndMergeFetchedBranches(branches)
|
||||
return branches
|
||||
@ -525,7 +528,7 @@ func gitCurrentBranchName() string {
|
||||
if err != nil {
|
||||
return ""
|
||||
}
|
||||
return branchName
|
||||
return strings.TrimSpace(branchName)
|
||||
}
|
||||
|
||||
const getBranchesCommand = `set -e
|
||||
|
Loading…
x
Reference in New Issue
Block a user