1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-07-28 16:02:01 +03:00

show tag menu for creation on tags tab

This commit is contained in:
Francisco Miamoto
2021-09-11 20:29:52 -03:00
committed by Jesse Duffield
parent b1d6ccddfb
commit 3e58797096
3 changed files with 38 additions and 36 deletions

View File

@ -9,7 +9,7 @@ func (c *GitCommand) CreateLightweightTag(tagName string, commitSha string) erro
}
func (c *GitCommand) CreateAnnotatedTag(tagName, commitSha, msg string) error {
return c.RunCommand("git tag %s %s -m '%s'", tagName, commitSha, msg)
return c.RunCommand("git tag %s %s -m %s", tagName, commitSha, c.OSCommand.Quote(msg))
}
func (c *GitCommand) DeleteTag(tagName string) error {