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:
committed by
Jesse Duffield
parent
b1d6ccddfb
commit
3e58797096
@ -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 {
|
||||
|
Reference in New Issue
Block a user