mirror of
https://github.com/chubin/cheat.sheets
synced 2024-11-15 06:12:59 +00:00
18 lines
491 B
Plaintext
18 lines
491 B
Plaintext
# carthage
|
|
# A dependency management tool for Cocoa applications (Mac OS X)
|
|
|
|
# Download & build the latest version of all dependencies mentioned in Cartfile
|
|
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 & rebuild the current version of dependencies (without updating them)
|
|
carthage bootstrap
|
|
|
|
# Rebuild a specific dependency:
|
|
carthage build dependency
|