lib/braid/operations.rb in dreamcat4-braid-0.531 vs lib/braid/operations.rb in dreamcat4-braid-0.533
- old
+ new
@@ -123,11 +123,11 @@
raise ShellExecutionError, message unless $?.exitstatus == 0
true
end
def msg(str)
- puts "Braid: #{str}"
+ puts "gitnest: #{str}"
end
def log(cmd)
msg "Executing `#{cmd}`" if verbose?
end
@@ -216,10 +216,10 @@
class Git < Proxy
def commit(message, *args)
commit_message_file = Tempfile.new("braid_commit", ".")
- commit_message_file.print("Braid: " + message)
+ commit_message_file.print("gitnest: " + message)
commit_message_file.flush
status, out, err = exec("git commit -F #{commit_message_file.path} --no-verify #{args.join(' ')}")
commit_message_file.unlink
if status == 0