mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-02-03 20:43:39 +00:00
30 lines
665 B
Plaintext
30 lines
665 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, osx]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# carthage
|
|
|
|
> A dependency management tool for Cocoa applications.
|
|
> More information: <https://github.com/Carthage/Carthage>.
|
|
|
|
- Download the latest version of all dependencies mentioned in Cartfile, and build them:
|
|
|
|
`carthage update`
|
|
|
|
- Update dependencies, but only build for iOS:
|
|
|
|
`carthage update --platform ios`
|
|
|
|
- Update dependencies, but don't build any of them:
|
|
|
|
`carthage update --no-build`
|
|
|
|
- Download and rebuild the current version of dependencies (without updating them):
|
|
|
|
`carthage bootstrap`
|
|
|
|
- Rebuild a specific dependency:
|
|
|
|
`carthage build {{dependency}}`
|