exe/git-multi in git-multi-1.1.0 vs exe/git-multi in git-multi-1.2.0
- old
+ new
@@ -9,21 +9,21 @@
if Git::Multi.valid?(multi_repo)
command = nil
else
abort \
"Unknown multi repo: #{multi_repo}\n\n" \
- '(use --check to list all known multi repos)'
+ '(use --report to list all known multi repos)'
end
end
case (command ||= ARGV.shift)
when /\A--/
case command
when '--version' then Git::Multi::Commands.version
when '--help' then Git::Multi::Commands.help
when '--html' then Git::Multi::Commands.html
- when '--check' then Git::Multi::Commands.check
+ when '--report' then Git::Multi::Commands.report
when '--count' then Git::Multi::Commands.count
when '--refresh' then Git::Multi::Commands.refresh
when '--json' then Git::Multi::Commands.json(multi_repo)
when '--list' then Git::Multi::Commands.list(multi_repo)
when '--archived'then Git::Multi::Commands.archived(multi_repo)
@@ -45,10 +45,9 @@
'(use --help/-h to list all available commands)'
end
when nil, '', '-h'
Git::Multi::Commands.help
else
- Git::Multi::Commands.report(multi_repo)
Git::Multi::Commands.exec(command, ARGV, multi_repo)
end
# That's all Folks!