1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-07-30 03:23:08 +03:00

Use inline status for fetching remotes

This commit is contained in:
Stefan Haller
2023-12-21 21:17:48 +01:00
parent ae89dde969
commit 7fb5266027
6 changed files with 38 additions and 7 deletions

View File

@ -15,6 +15,10 @@ func (r *Remote) ID() string {
return r.RefName()
}
func (r *Remote) URN() string {
return "remote-" + r.ID()
}
func (r *Remote) Description() string {
return r.RefName()
}