Ich habe hier eine kleine Shellfunktion für euch, um bequem die HTTPS-URL eines Git-Repositories zu kommen:
function git-url() {
#Call this function with one argument if you want the URL of another remote repository than origin
if [ -z "$1" ];
then
name="origin";
else
name="$1";
fi;
git remote get-url "$name" | awk -F '' 'gsub("git@", ""), gsub(":","") {print "https://" $0}'
}