summaryrefslogtreecommitdiffstats
path: root/pkg/commands/tags.go
blob: 121637311d316d935f9322cfefbe7c4d5c9b1d41 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package commands

import "fmt"

func (c *GitCommand) CreateLightweightTag(tagName string, commitSha string) error {
	return c.OSCommand.RunCommand("git tag %s %s", tagName, commitSha)
}

func (c *GitCommand) DeleteTag(tagName string) error {
	return c.OSCommand.RunCommand("git tag -d %s", tagName)
}

func (c *GitCommand) PushTag(remoteName string, tagName string, promptUserForCredential func(string) string) error {
	command := fmt.Sprintf("git push %s %s", remoteName, tagName)
	return c.OSCommand.DetectUnamePass(command, promptUserForCredential)
}