# File lib/librarian/source/git/repository.rb, line 51
        def checkout!(reference, options ={ })
          command = ??(checkout #{reference} --quiet)
          command << "--force" if options[:force]
          run!(command, :chdir => true)
        end