module Spoom::Git

def self.commit_time(sha, path: ".")

def self.commit_time(sha, path: ".")
  timestamp = commit_timestamp(sha, path: path)
  return nil unless timestamp
  epoch_to_time(timestamp.to_s)
end