Forrest logo
back to context overview

carthage

List of commands for carthage:

  • carthage:tldr:304af carthage: Rebuild a specific dependency.
    $ carthage build ${dependency}
    try on your machine
    explain this command
  • carthage:tldr:336aa carthage: Update dependencies, but don't build any of them.
    $ carthage update --no-build
    try on your machine
    explain this command
  • carthage:tldr:4cb1a carthage: Update dependencies, but only build for iOS.
    $ carthage update --platform ios
    try on your machine
    explain this command
  • carthage:tldr:61914 carthage: Download the latest version of all dependencies mentioned in Cartfile, and build them.
    $ carthage update
    try on your machine
    explain this command
  • carthage:tldr:d42a8 carthage: Download and rebuild the current version of dependencies (without updating them).
    $ carthage bootstrap
    try on your machine
    explain this command
back to context overview