class GitHelper
Public Instance Methods
apply_tag(tag)
click to toggle source
# File lib/build_promotion_tool/helper/git_helper.rb, line 15 def apply_tag(tag) `git tag #{tag}` end
push_tag_to_remote(tag)
click to toggle source
# File lib/build_promotion_tool/helper/git_helper.rb, line 19 def push_tag_to_remote(tag) `git push origin #{tag}` end