From 946546282874ca242f9cb7b7a93feb2c068f8e85 Mon Sep 17 00:00:00 2001 From: Gaetan Semet Date: Tue, 18 Jun 2013 11:28:42 +0200 Subject: [PATCH] New aliases for repo Signed-off-by: Gaetan Semet --- plugins/repo/repo.plugin.zsh | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/plugins/repo/repo.plugin.zsh b/plugins/repo/repo.plugin.zsh index c42fb768a..a8725ab5a 100644 --- a/plugins/repo/repo.plugin.zsh +++ b/plugins/repo/repo.plugin.zsh @@ -2,4 +2,8 @@ alias r='repo' compdef _repo r=repo alias rra='repo rebase --auto-stash' -compdef _repo r=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'