added git_push_tags

This commit is contained in:
Robert Kiel
2017-01-21 20:17:45 -05:00
committed by GitHub
parent 9684151482
commit 7c2f803718

View File

@@ -55,6 +55,10 @@ module Shared
run_cmd "git push origin #{branch}" run_cmd "git push origin #{branch}"
end end
def git_push_tags
run_cmd "git push origin --tags"
end
def git_rebase (branch) def git_rebase (branch)
run_cmd "git rebase #{branch}" run_cmd "git rebase #{branch}"
end end