Files
git-utilities/bin/commit
2015-05-31 16:44:56 -04:00

10 lines
182 B
Ruby
Executable File

#!/usr/bin/env ruby
raise "USAGE: commit [word....]" unless ARGV.size > 0
comment = ARGV.reject { |x| x == '-m' }.join(' ')
command = "git commit -m \"#{comment}\""
exec command