mirror of
https://github.com/TECHNOFAB11/bumpver.git
synced 2025-12-12 06:20:08 +01:00
fix tag subcommand
This commit is contained in:
parent
d6b7c6e9dc
commit
49667ad4dc
1 changed files with 2 additions and 2 deletions
|
|
@ -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",
|
||||
},
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue