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

Add inline status for pushing tags and deleting remote tags

This commit is contained in:
Stefan Haller
2023-10-08 16:46:04 +02:00
parent 707fa37160
commit 3d6965ccbb
4 changed files with 35 additions and 8 deletions

View File

@ -24,6 +24,10 @@ func (t *Tag) ID() string {
return t.RefName()
}
func (t *Tag) URN() string {
return "tag-" + t.ID()
}
func (t *Tag) Description() string {
return t.Message
}