Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
adam.huang
Ohmyzsh
Commits
d24196cf
Commit
d24196cf
authored
Jun 17, 2015
by
ncanceill
Browse files
git plugin: fix ggl to avoid empty string
see
https://github.com/robbyrussell/oh-my-zsh/pull/2790#issuecomment-112716330
parent
ed6645a2
Changes
1
Show whitespace changes
Inline
Side-by-side
plugins/git/git.plugin.zsh
View file @
d24196cf
...
...
@@ -101,8 +101,12 @@ git push --force origin "${b:=$1}"
}
compdef _git
ggf
=
git-checkout
ggl
()
{
if
[[
"$#"
!=
0
]]
&&
[[
"$#"
!=
1
]]
;
then
git pull origin
"
${
*
}
"
else
[[
"$#"
==
0
]]
&&
local
b
=
"
$(
current_branch
)
"
git pull origin
"
${
b
:
=
$1
}
"
"
${
*[2,-1]
}
"
git pull origin
"
${
b
:
=
$1
}
"
fi
}
compdef _git
ggl
=
git-checkout
alias
ggpull
=
'git pull origin $(current_branch)'
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment