diff options
author | Gaetan Semet <gaetan@xeberon.net> | 2013-12-03 10:24:32 +0100 |
---|---|---|
committer | ncanceill <nicolas.canceill@ens-cachan.org> | 2014-06-08 10:41:51 +0200 |
commit | 99c9dbed4722c66428323401d560aaa521c6932f (patch) | |
tree | af8ec3781b363f669fddd67430279f18a3cbb0a6 | |
parent | e04d3e0563217c2beef475b4eecf90bde4c8193a (diff) | |
download | zsh-99c9dbed4722c66428323401d560aaa521c6932f.tar.gz zsh-99c9dbed4722c66428323401d560aaa521c6932f.tar.bz2 zsh-99c9dbed4722c66428323401d560aaa521c6932f.zip |
New alias for repo: ru and rst
Signed-off-by: Gaetan Semet <gaetan@xeberon.net>
-rw-r--r-- | plugins/repo/repo.plugin.zsh | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/plugins/repo/repo.plugin.zsh b/plugins/repo/repo.plugin.zsh index d690a9d22..33f4195c7 100644 --- a/plugins/repo/repo.plugin.zsh +++ b/plugins/repo/repo.plugin.zsh @@ -10,3 +10,9 @@ 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' |