Carthage plugin

This commit is contained in:
Nirmit Patel 2021-05-18 21:43:41 +05:30
parent d646884add
commit adec61db62
2 changed files with 46 additions and 0 deletions

View File

@ -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 |

View File

@ -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'