diff --git a/src/pycalver/vcs.py b/src/pycalver/vcs.py index a1f062a..93de8da 100644 --- a/src/pycalver/vcs.py +++ b/src/pycalver/vcs.py @@ -36,7 +36,7 @@ VCS_SUBCOMMANDS_BY_NAME = { 'add_path' : "git add --update {path}", 'commit' : "git commit --message '{message}'", 'tag' : "git tag --annotate {tag} --message {tag}", - 'push_tag' : "git push origin --follow-tags {tag}", + 'push_tag' : "git push origin --follow-tags {tag} HEAD", 'show_remotes': "git config --get remote.origin.url", }, 'hg': {