Skip to content

Commit

Permalink
Fix: Remove tag_push function
Browse files Browse the repository at this point in the history
  • Loading branch information
pascalholthaus authored and bjoernricks committed Oct 19, 2022
1 parent 698b63e commit 8363ee6
Showing 1 changed file with 0 additions and 15 deletions.
15 changes: 0 additions & 15 deletions pontos/git/git.py
Original file line number Diff line number Diff line change
Expand Up @@ -295,18 +295,3 @@ def tag(
args.append(tag)

exec_git(*args, cwd=self._cwd)

def push_tag(
self,
tag: str,
):
"""
Push tag changes to remote repository
Args:
Tag: Push tag to the named remote
"""
args = ["push", "origin"]
args.append(f"refs/tags/{tag}")

exec_git(*args, cwd=self._cwd)

0 comments on commit 8363ee6

Please sign in to comment.