From 4f41a7f369e8f7d5eb490fe1aafc74e6db568b95 Mon Sep 17 00:00:00 2001 From: Gaetan Semet Date: Tue, 23 Dec 2014 16:51:24 +0100 Subject: [PATCH] new alias for repo Signed-off-by: Gaetan Semet --- plugins/repo/repo.plugin.zsh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/plugins/repo/repo.plugin.zsh b/plugins/repo/repo.plugin.zsh index 43baad47e..f06be434b 100644 --- a/plugins/repo/repo.plugin.zsh +++ b/plugins/repo/repo.plugin.zsh @@ -26,6 +26,12 @@ compdef _repo ru='repo upload' alias rst='repo status' compdef _repo rst='repo status' +alias ruc='repo upload --cbr .' +compdef _repo ruc='repo upload' + +alias yruc='yes | repo upload --cbr .' +compdef _repo ruc='repo upload' + # Repo start current branch on all projects alias rscb='echo "Starting branch $(git branch | sed -n "/\* /s///p") on all projects" && repo start $(git branch | sed -n "/\* /s///p") --all' compdef _repo rscb='repo start'