Method: TYCiCore::Git.git_commit_all
- Defined in:
- lib/tuya/ci/core/git.rb
.git_commit_all(message) ⇒ Object
82 83 84 85 86 87 88 89 90 91 |
# File 'lib/tuya/ci/core/git.rb', line 82 def self.git_commit_all() puts "Git commit all".green git_commit_commands = [ %W(add -A), %W(commit -am '#{message}') ] EXE.multi_exe('git', git_commit_commands, true) end |