ohmyzsh/plugins/repo/repo.plugin.zsh
Gaetan Semet 9465462828 New aliases for repo
Signed-off-by: Gaetan Semet <gaetan@xeberon.net>
2013-06-18 11:28:42 +02:00

9 lines
288 B
Bash

# Aliases
alias r='repo'
compdef _repo r=repo
alias rra='repo rebase --auto-stash'
compdef _repo rra='repo rebase --auto-stash'
alias rs='repo sync'
compdef _repo rs='repo sync'
alias rsrra='repo sync ; repo rebase --auto-stash'
compdef _repo rsrra='repo sync ; repo rebase --auto-stash'