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>
This commit is contained in:
Gaetan Semet 2013-07-15 15:08:57 +02:00
commit 5c103b5675
2 changed files with 53 additions and 5 deletions

View file

@ -1,2 +1,12 @@
# 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'