From a2551e9af71fde9eabd21e34b6be19648859d5ae Mon Sep 17 00:00:00 2001 From: wizarot Date: Tue, 26 Feb 2019 11:08:57 +0800 Subject: [PATCH] carthage: add Chinese translation --- pages.zh/osx/carthage.md | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 pages.zh/osx/carthage.md diff --git a/pages.zh/osx/carthage.md b/pages.zh/osx/carthage.md new file mode 100644 index 000000000..64f82954b --- /dev/null +++ b/pages.zh/osx/carthage.md @@ -0,0 +1,23 @@ +# carthage + +> Cocoa应用程序的依赖性管理工具 + +- 下载 Cartfile 中提到的所有依赖项的最新版本,并编译它们: + +`carthage update` + +- 仅针对 IOS平台,升级依赖文件 : + +`carthage update --platform ios` + +- 仅更新依赖,但不编译它们 : + +`carthage update --no-build` + +- 下载并重新生成依赖项的当前版本(不更新它们): + +`carthage bootstrap` + +- 重新编译特定依赖项 : + +`carthage build {{依赖包}}`