You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
403 B
18 lines
403 B
# 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' |
|
|
|
alias ru='repo upload' |
|
compdef _repo ru='repo upload' |
|
|
|
alias rst='repo status' |
|
compdef _repo rst='repo status'
|
|
|