2021-06-18 15:51:57 +00:00
|
|
|
#!/bin/sh
|
2021-11-06 23:22:45 +00:00
|
|
|
# Translate different repo notations into ssh
|
|
|
|
# Usage:
|
|
|
|
# git repo <url>
|
|
|
|
# git repo <host> <repo> [user]
|
2021-06-18 15:51:57 +00:00
|
|
|
case "$1" in
|
2022-08-21 10:29:51 +00:00
|
|
|
(http*)
|
|
|
|
if expr "$1" : ".*:" >/dev/null
|
2023-06-16 08:47:24 +00:00
|
|
|
then echo "${1%/}" | sed "s|.*//\([^/]*\)/\(.*\)|git@\1:\2.git|"
|
2022-08-21 10:29:51 +00:00
|
|
|
exit
|
|
|
|
else http=$1 && shift
|
|
|
|
fi;;
|
|
|
|
(git:*|ssh:*)
|
|
|
|
echo "$1"
|
|
|
|
exit;;
|
2021-06-18 15:51:57 +00:00
|
|
|
esac
|
2024-01-12 16:53:07 +00:00
|
|
|
host=$1
|
|
|
|
case $host in
|
2024-07-27 09:22:30 +00:00
|
|
|
(socha) user=software-challenge; host=github.com;;
|
|
|
|
(hub|github) host=github.com;;
|
|
|
|
(lab) host=gitlab.com;;
|
|
|
|
(ftt|"") host=forge.ftt.gmbh; user=janek;;
|
2022-08-21 10:29:51 +00:00
|
|
|
esac
|
|
|
|
user=${3:-${user:-$(git config user.name)}}
|
2023-09-27 13:38:23 +00:00
|
|
|
repo=${2:-$(basename $(git root))}
|
2022-08-21 10:29:51 +00:00
|
|
|
if test "$http"
|
|
|
|
then echo "$http://${host#git*@}/$user/$repo.git"
|
|
|
|
else echo "$host:$user/$repo.git"
|
|
|
|
fi
|