ohmyzsh/plugins/repo/repo.plugin.zsh
Gaetan Semet 5c103b5675 Fix aliases for git and repo
This also adds the wonderful "gitk-entier-history" alias
to display the entiere git history with dangling commits.

Signed-off-by: Gaetan Semet <gaetan@xeberon.net>
2013-07-15 15:08:57 +02:00

12 lines
291 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'