mirror of
https://github.com/JanDeDobbeleer/oh-my-posh.git
synced 2024-12-31 22:07:25 -08:00
parent
1c24745e58
commit
82be7a507a
|
@ -167,6 +167,9 @@ func (g *Git) Enabled() bool {
|
||||||
|
|
||||||
g.RepoName = platform.Base(g.env, g.convertToLinuxPath(g.realDir))
|
g.RepoName = platform.Base(g.env, g.convertToLinuxPath(g.realDir))
|
||||||
|
|
||||||
|
g.Working = &GitStatus{}
|
||||||
|
g.Staging = &GitStatus{}
|
||||||
|
|
||||||
if g.IsBare {
|
if g.IsBare {
|
||||||
g.getBareRepoInfo()
|
g.getBareRepoInfo()
|
||||||
return true
|
return true
|
||||||
|
@ -186,8 +189,6 @@ func (g *Git) Enabled() bool {
|
||||||
g.setBranchStatus()
|
g.setBranchStatus()
|
||||||
} else {
|
} else {
|
||||||
g.setPrettyHEADName()
|
g.setPrettyHEADName()
|
||||||
g.Working = &GitStatus{}
|
|
||||||
g.Staging = &GitStatus{}
|
|
||||||
}
|
}
|
||||||
if g.props.GetBool(FetchUpstreamIcon, false) {
|
if g.props.GetBool(FetchUpstreamIcon, false) {
|
||||||
g.UpstreamIcon = g.getUpstreamIcon()
|
g.UpstreamIcon = g.getUpstreamIcon()
|
||||||
|
|
Loading…
Reference in a new issue