2024-07-14 16:18:26 -04:00
|
|
|
# typed: strict
|
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
require "abstract_command"
|
2024-07-15 11:40:09 -04:00
|
|
|
require "shell_command"
|
2024-07-14 16:18:26 -04:00
|
|
|
|
|
|
|
module Homebrew
|
|
|
|
module Cmd
|
|
|
|
class UpdateReset < AbstractCommand
|
2024-07-15 11:40:09 -04:00
|
|
|
include ShellCommand
|
|
|
|
|
2024-07-14 16:18:26 -04:00
|
|
|
cmd_args do
|
|
|
|
description <<~EOS
|
|
|
|
Fetch and reset Homebrew and all tap repositories (or any specified <repository>) using `git`(1) to their latest `origin/HEAD`.
|
|
|
|
|
|
|
|
*Note:* this will destroy all your uncommitted or committed changes.
|
|
|
|
EOS
|
|
|
|
|
2024-07-14 23:09:53 -04:00
|
|
|
named_args :repository
|
2024-07-14 16:18:26 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|