lib/cocoapods-jxedt/command/binary/command/push.rb in cocoapods-jxedt-0.0.14 vs lib/cocoapods-jxedt/command/binary/command/push.rb in cocoapods-jxedt-0.0.15
- old
+ new
@@ -1,19 +1,19 @@
module Pod
class Command
class JxedtCommand < Command
class Binary < JxedtCommand
class Push < Binary
- self.summary = 'sync local files to git repo.'
+ self.summary = '同步组件二进制产物到远程'
self.description = <<-DESC
- sync local files to git repo.
+ 同步组件二进制产物到远程
DESC
self.command = 'push'
self.arguments = [
]
def self.options
[
- ['--force-push', 'force push generated frameworks']
+ ['--force-push', '强制推送组件二进制到远程,远程有相同的校验和会被本地覆盖']
]
end
def initialize(argv)
@force_push = argv.flag?('force-push', false)
super
\ No newline at end of file