Python (re)

Git Remote URL (HTTPS or SSH) in PY

Match git remote URLs in both `git@host:org/repo` and `https://host/org/repo` forms.

Try it in the PY tester →

Pattern

regexPY
(?:git@|https?:\/\/)([\w.\-]+)[:\/]([\w.\-]+)\/([\w.\-]+?)(?:\.git)?\/?$

Python (re) code

pyPython
import re

pattern = re.compile(r"(?:git@|https?:\/\/)([\w.\-]+)[:\/]([\w.\-]+)\/([\w.\-]+?)(?:\.git)?\/?$")
input_text = "git@github.com:vercel/next.js.git"
for m in pattern.finditer(input_text):
    print(m.group(0))

Stdlib `re` module — no third-party dependency. Works on Python 3.6+.

How the pattern works

(?:git@|https?:\/\/) matches either the SSH `git@` prefix or HTTP/HTTPS scheme. ([\w.\-]+) captures the host. [:\/] matches the host/path separator (colon for SSH, slash for HTTPS). The next two groups capture org and repo. (?:\.git)? optionally strips the trailing `.git`. \/? allows a trailing slash.

Examples

Input

git@github.com:vercel/next.js.git

Matches

  • git@github.com:vercel/next.js.git

Input

https://gitlab.com/group/subproject

Matches

  • https://gitlab.com/group/subproject

Input

not a git url

No match

Same pattern, other engines

← Back to Git Remote URL (HTTPS or SSH) overview (all engines)