mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-08-04 07:35:42 +02:00
carthage.md: add page (#1278)
This commit is contained in:
parent
a0f37ef1ef
commit
c10d09d0bd
1 changed files with 23 additions and 0 deletions
23
pages/osx/carthage.md
Normal file
23
pages/osx/carthage.md
Normal file
|
@ -0,0 +1,23 @@
|
|||
# carthage
|
||||
|
||||
> Carthage is a dependency management tool for Cocoa applications.
|
||||
|
||||
- Download and build all dependencies mentioned in Cartfile. Also used to update dependencies to their latest version:
|
||||
|
||||
`carthage update`
|
||||
|
||||
- Update dependencies and only build for iOS:
|
||||
|
||||
`carthage update --platform ios`
|
||||
|
||||
- Update dependencies but don't build:
|
||||
|
||||
`carthage update --no-build`
|
||||
|
||||
- Download and rebuild the current dependency set without updating:
|
||||
|
||||
`carthage bootstrap`
|
||||
|
||||
- Rebuild a specific dependency:
|
||||
|
||||
`carthage build {{dependency}}`
|
Loading…
Add table
Reference in a new issue