浏览代码

current repository action

pomaxa 13 年之前
父节点
当前提交
b1e4ef1754
共有 1 个文件被更改,包括 7 次插入1 次删除
  1. 7 1
      plugins/git/git.plugin.zsh

+ 7 - 1
plugins/git/git.plugin.zsh

@@ -54,10 +54,16 @@ function current_branch() {
   echo ${ref#refs/heads/}
   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
 # these aliases take advantage of the previous function
 alias ggpull='git pull origin $(current_branch)'
 alias ggpull='git pull origin $(current_branch)'
 compdef ggpull=git
 compdef ggpull=git
 alias ggpush='git push origin $(current_branch)'
 alias ggpush='git push origin $(current_branch)'
 compdef ggpush=git
 compdef ggpush=git
 alias ggpnp='git pull origin $(current_branch) && git push origin $(current_branch)'
 alias ggpnp='git pull origin $(current_branch) && git push origin $(current_branch)'
-compdef ggpnp=git
+compdef ggpnp=git