git-pre-push-hook: remove ".git" from URL.

This commit is contained in:
Ryan C. Gordon 2021-03-17 13:36:38 -04:00
parent e7e519a466
commit db2ad6fa73
No known key found for this signature in database
GPG Key ID: FA148B892AB48044
1 changed files with 1 additions and 0 deletions

View File

@ -27,6 +27,7 @@ my $url = $ARGV[1];
#print("remote: $remote\n");
#print("url: $url\n");
$url =~ s/\.git$//; # change myorg/myproject.git to myorg/myproject
$url =~ s#^git\@github\.com\:#https://github.com/#i;
my $commiturl = $url =~ /\Ahttps?:\/\/github.com\// ? "$url/commit/" : '';