# File lib/chef/provider/git.rb, line 87
      def action_export
        action_checkout
        converge_by("complete the export by removing #{@new_resource.destination}.git after checkout") do 
          FileUtils.rm_rf(::File.join(@new_resource.destination,".git"))
        end
      end