fix tag subcommand

This commit is contained in:
Manuel Barkhau 2018-11-11 15:45:54 +01:00
parent d6b7c6e9dc
commit 49667ad4dc

View file

@ -24,7 +24,7 @@ VCS_SUBCOMMANDS_BY_NAME = {
'push_tag' : "git push {tag}",
'commit' : "git commit --file {path}",
'status' : "git status --porcelain",
'tag' : "git tag --annotate {version} --message '{version}'",
'tag' : "git tag --annotate {name} --message '{name}'",
'add_path' : "git add --update {path}",
'ls_tags' : "git tag --list v*",
},
@ -34,7 +34,7 @@ VCS_SUBCOMMANDS_BY_NAME = {
'push_tag' : "hg push {tag}",
'commit' : "hg commit --logfile",
'status' : "hg status -mard",
'tag' : "hg tag {version} --message '{version}'",
'tag' : "hg tag {name} --message '{name}'",
'add_path' : "hg add {path}",
'ls_tags' : "hg tags",
},