mirror of
https://github.com/dcarrillo/prezto.git
synced 2026-01-18 18:14:25 +00:00
15 lines
171 B
Plaintext
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)"
|
|
|
|
# }
|