1
0
mirror of https://github.com/robbyrussell/oh-my-zsh.git synced 2026-04-21 13:53:28 +02:00

fix(git): fix directory parse from URL in gccd (#10276)

This commit is contained in:
Luka Markušić
2021-10-09 13:42:17 +02:00
committed by GitHub
parent 07cdd7a539
commit 6ac1ff6905
+1 -1
View File
@@ -100,7 +100,7 @@ alias gcf='git config --list'
function gccd() {
command git clone --recurse-submodules "$@"
[[ -d "$_" ]] && cd "$_" || cd "${${_:h}%.git}"
[[ -d "$_" ]] && cd "$_" || cd "${${_:t}%.git}"
}
compdef _git gccd=git-clone