diff options
author | pomaxa <pomaxa@ambergames.com> | 2012-03-01 16:57:00 +0200 |
---|---|---|
committer | pomaxa <pomaxa@ambergames.com> | 2012-03-01 16:57:00 +0200 |
commit | b1e4ef17543d4a236ad35417ac36560917e6cadc (patch) | |
tree | e4ff162d02c9e63e832dcfacffd974ff1585be12 | |
parent | 1120f973054836eeb53750f57d69fbec41a340dc (diff) | |
download | zsh-b1e4ef17543d4a236ad35417ac36560917e6cadc.tar.gz zsh-b1e4ef17543d4a236ad35417ac36560917e6cadc.tar.bz2 zsh-b1e4ef17543d4a236ad35417ac36560917e6cadc.zip |
current repository action
-rw-r--r-- | plugins/git/git.plugin.zsh | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/plugins/git/git.plugin.zsh b/plugins/git/git.plugin.zsh index e1d682508..d3d3f702a 100644 --- a/plugins/git/git.plugin.zsh +++ b/plugins/git/git.plugin.zsh @@ -54,10 +54,16 @@ function current_branch() { echo ${ref#refs/heads/} } +function current_repository() { + + ref=$(git symbolic-ref HEAD 2> /dev/null) || return + echo $(git remote -v | cut -d':' -f 2) +} + # these aliases take advantage of the previous function alias ggpull='git pull origin $(current_branch)' compdef ggpull=git alias ggpush='git push origin $(current_branch)' compdef ggpush=git alias ggpnp='git pull origin $(current_branch) && git push origin $(current_branch)' -compdef ggpnp=git
\ No newline at end of file +compdef ggpnp=git |