Update gclone alias to use url from clipboard if not specified
This commit is contained in:
parent
4952a2cd74
commit
4c155682d2
12
aliases/git
12
aliases/git
|
@ -60,7 +60,15 @@ alias glll="gls -la"
|
||||||
|
|
||||||
gclone() {
|
gclone() {
|
||||||
local oldurl
|
local oldurl
|
||||||
local url=$1
|
local url
|
||||||
|
if [[ -n $1 ]]; then
|
||||||
|
url=$1
|
||||||
|
else
|
||||||
|
echo "${fg_bold[green]}Getting url from cliboard:"
|
||||||
|
url=$(xclip -o -selection clipboard)
|
||||||
|
echo $url
|
||||||
|
fi
|
||||||
|
|
||||||
shift
|
shift
|
||||||
local git_hosts=(
|
local git_hosts=(
|
||||||
gitlab2.informatik.uni-wuerzburg.de
|
gitlab2.informatik.uni-wuerzburg.de
|
||||||
|
@ -70,7 +78,7 @@ gclone() {
|
||||||
for host in $git_hosts; do
|
for host in $git_hosts; do
|
||||||
if [[ "$url" =~ "^https://$host" ]]; then
|
if [[ "$url" =~ "^https://$host" ]]; then
|
||||||
oldurl=$url
|
oldurl=$url
|
||||||
url=${url//https:\/\/$host\//git@$host:}
|
url=$(echo ${url//https:\/\/$host\//git@$host:} | grep -oe '^[^/]*/[^/]*')
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue