add feature to commit message

This commit is contained in:
rkiel
2015-06-06 08:13:39 -04:00
parent be68a8b6c8
commit 2cda5ed133
2 changed files with 16 additions and 3 deletions

View File

@@ -58,6 +58,10 @@ module Shared
def git_local_branch_create (branch)
run_cmd "git checkout -b #{branch}"
end
def git_commit (message)
run_cmd "git commit -m \"#{message}\""
end
end
end