mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-13 09:20:09 +00:00
fix(git): fix directory parse from URL in gccd
(#10276)
This commit is contained in:
parent
07cdd7a539
commit
6ac1ff6905
1 changed files with 1 additions and 1 deletions
|
@ -100,7 +100,7 @@ alias gcf='git config --list'
|
||||||
|
|
||||||
function gccd() {
|
function gccd() {
|
||||||
command git clone --recurse-submodules "$@"
|
command git clone --recurse-submodules "$@"
|
||||||
[[ -d "$_" ]] && cd "$_" || cd "${${_:h}%.git}"
|
[[ -d "$_" ]] && cd "$_" || cd "${${_:t}%.git}"
|
||||||
}
|
}
|
||||||
compdef _git gccd=git-clone
|
compdef _git gccd=git-clone
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue