repo.plugin.zsh 291 Bytes
Newer Older
1
2
# Aliases
alias r='repo'
Gaetan Semet's avatar
Gaetan Semet committed
3
4
5
6
7
8
9
10
11
12
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'