mirror of
https://github.com/jesseduffield/lazygit.git
synced 2025-05-11 20:36:03 +02:00
Merge pull request #2548 from AKARSHITJOSHI/fix/tagPush
This commit is contained in:
commit
7db54a948a
1 changed files with 1 additions and 1 deletions
|
@ -35,5 +35,5 @@ func (self *TagCommands) Delete(tagName string) error {
|
|||
}
|
||||
|
||||
func (self *TagCommands) Push(remoteName string, tagName string) error {
|
||||
return self.cmd.New(fmt.Sprintf("git push %s %s", self.cmd.Quote(remoteName), self.cmd.Quote(tagName))).PromptOnCredentialRequest().WithMutex(self.syncMutex).Run()
|
||||
return self.cmd.New(fmt.Sprintf("git push %s tag %s", self.cmd.Quote(remoteName), self.cmd.Quote(tagName))).PromptOnCredentialRequest().WithMutex(self.syncMutex).Run()
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue