class Thor::Actions::CreateFile

def on_conflict_behavior(&block)


Now on conflict we check if the file is identical or not.
def on_conflict_behavior(&block)
  if identical?
    say_status :identical, :blue
  else
    options = base.options.merge(config)
    force_or_skip_or_conflict(options[:force], options[:skip], &block)
  end
end