mirror of https://github.com/ohmyzsh/ohmyzsh.git
Merge adec61db62
into 6e7ac0544e
This commit is contained in:
commit
08a560abe1
|
@ -0,0 +1,27 @@
|
||||||
|
# carthage plugin
|
||||||
|
|
||||||
|
The carthage plugin provides all [aliases](#aliases) .
|
||||||
|
|
||||||
|
To use it, add `carthage` to the plugins array in your zshrc file:
|
||||||
|
|
||||||
|
```zsh
|
||||||
|
plugins=(... carthage)
|
||||||
|
```
|
||||||
|
|
||||||
|
## Aliases
|
||||||
|
|
||||||
|
| Alias | Command |
|
||||||
|
|:---------------------|:---------------------------------------------------------------------------------------------------------------------------------|
|
||||||
|
| c | carthage |
|
||||||
|
| ca | carthage archive |
|
||||||
|
| cb | carthage build |
|
||||||
|
| cbs | carthage bootstrap |
|
||||||
|
| cck | carthage checkout |
|
||||||
|
| ccf | carthage copy-frameworks |
|
||||||
|
| cf | carthage fetch |
|
||||||
|
| ch | carthage help |
|
||||||
|
| cl | cat Cartfile |
|
||||||
|
| co | carthage outdated |
|
||||||
|
| cu | carthage update |
|
||||||
|
| cv | carthage validate |
|
||||||
|
| cver | carthage version |
|
|
@ -0,0 +1,19 @@
|
||||||
|
|
||||||
|
#
|
||||||
|
# Aliases
|
||||||
|
# (sorted alphabetically)
|
||||||
|
#
|
||||||
|
|
||||||
|
alias c='carthage'
|
||||||
|
alias ca='carthage archive'
|
||||||
|
alias cb='carthage build'
|
||||||
|
alias cbs='carthage bootstrap'
|
||||||
|
alias cck='carthage checkout'
|
||||||
|
alias ccf='carthage copy-frameworks'
|
||||||
|
alias cf='carthage fetch'
|
||||||
|
alias ch='carthage help'
|
||||||
|
alias cl='cat Cartfile'
|
||||||
|
alias co='carthage outdated'
|
||||||
|
alias cu='carthage update'
|
||||||
|
alias cv= 'carthage validate'
|
||||||
|
alias cver='carthage version'
|
Loading…
Reference in New Issue