Commit b84d3366 authored by Robby Russell's avatar Robby Russell
Browse files

Merge pull request #985 from pomaxa/master

git plugin function
parents f60244f8 b1e4ef17
......@@ -54,6 +54,12 @@ 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
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment