1
0
mirror of https://github.com/dcarrillo/prezto.git synced 2026-01-18 18:14:25 +00:00
Files
prezto/modules/git/functions/git-clonecd

15 lines
171 B
Plaintext

#
# Clone and cd
#
# Authors:
# Daniel Carrillo <daniel.carrillo@gmail.com>
#
# function git-clonecd {
local url=$1
git clone $url && cd "$(basename "$_" .git)"
# }