1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/osx/carthage.md
2017-04-23 19:55:45 +05:30

23 lines
515 B
Markdown

# carthage
> A dependency management tool for Cocoa applications.
- 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}}`