2
0
mirror of https://github.com/chubin/cheat.sheets synced 2024-11-19 03:25:44 +00:00
cheat.sheets/sheets/carthage

18 lines
505 B
Plaintext
Raw Normal View History

2017-06-04 20:46:37 +00:00
# carthage
# A dependency management tool for Cocoa applications (Mac OS X)
2017-06-04 14:35:24 +00:00
2017-06-04 20:46:37 +00:00
# Download the latest version of all dependencies mentioned in Cartfile, and build them:
carthage update
2017-06-04 14:35:24 +00:00
2017-06-04 20:46:37 +00:00
# Update dependencies, but only build for iOS:
carthage update --platform ios
2017-06-04 14:35:24 +00:00
2017-06-04 20:46:37 +00:00
# Update dependencies, but don't build any of them:
carthage update --no-build
2017-06-04 14:35:24 +00:00
2017-06-04 20:46:37 +00:00
# Download and rebuild the current version of dependencies (without updating them):
carthage bootstrap
2017-06-04 14:35:24 +00:00
2017-06-04 20:46:37 +00:00
# Rebuild a specific dependency:
carthage build dependency