From 3fded04662a482c078f0c1fae7b18a86fdf9d755 Mon Sep 17 00:00:00 2001 From: Manuel Barkhau Date: Sat, 3 Oct 2020 18:43:14 +0000 Subject: [PATCH] attempt to fix #8 --- src/pycalver/vcs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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': {