From b924f2a24a30addd163876692fb6344930e6cbcb Mon Sep 17 00:00:00 2001 From: Manuel Barkhau Date: Sun, 11 Nov 2018 15:55:41 +0100 Subject: [PATCH] fix push command --- 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 2f0ef32..f1afc37 100644 --- a/src/pycalver/vcs.py +++ b/src/pycalver/vcs.py @@ -26,7 +26,7 @@ VCS_SUBCOMMANDS_BY_NAME = { 'add_path' : "git add --update {path}", 'commit' : "git commit --file {path}", 'tag' : "git tag --annotate {tag} --message '{tag}'", - 'push_tag' : "git push {tag}", + 'push_tag' : "git push origin '{tag}'", }, 'hg': { 'is_usable': "hg root",