REGEXVAULTv2.0
Dev & Systems/Git
Verified Safe

Git Remote URL (SSH) Regex for Java

/^git@([a-zA-Z0-9][a-zA-Z0-9\-.]{0,61}[a-zA-Z0-9]):([a-zA-Z0-9_.\-][a-zA-Z0-9_.\-/]{0,253}(?:\.git)?)$/

What this pattern does

This page provides a comprehensive, battle-tested regular expression for matching git remote url (ssh), ported and verified for Java. A rigorously tested regex reduces debugging time and protects your application from edge-case failures. The snippet below is ready to drop into your Java project — whether you're validating in a Spring Boot controller, a Jakarta EE service, or a standalone utility class.

Java Implementation

Java
// Git Remote URL (SSH)
// ReDoS-safe | RegexVault — Dev & Systems > Git

import java.util.regex.Pattern;

public class GitRemoteUrlSshValidator {
    private static final Pattern PATTERN =
        Pattern.compile("^git@([a-zA-Z0-9][a-zA-Z0-9\\-.]{0,61}[a-zA-Z0-9]):([a-zA-Z0-9_.\\-][a-zA-Z0-9_.\\-/]{0,253}(?:\\.git)?)$");

    public static boolean validate(String input) {
        return PATTERN.matcher(input).matches();
    }

    // Example
    public static void main(String[] args) {
        System.out.println(validate("git@github.com:user/repo.git")); // true
    }
}

Test Cases

Matches (Valid)
Rejects (Invalid)
git@github.com:user/repo.githttps://github.com/user/repo.git
git@gitlab.com:group/subgroup/project.gitssh://git@github.com/user/repo.git
git@bitbucket.org:user/repo.gitgit@github.com/user/repo.git
git@git.example.com:team/projectgit@:user/repo.git
git@github.com:org/repouser@github.com:user/repo.git

When to use this pattern

This pattern is drawn from the Dev & Systems > Git category and carries a ReDoS-safe certification. That matters for Java developers because critical in Java applications since the JVM regex engine uses backtracking and is susceptible to ReDoS without careful pattern design. RegexVault audits patterns against known backtracking attack vectors, ensuring you have the necessary context before using this regex in a high-stakes production environment.

Common Pitfalls

The colon is SCP-style. git@github.com:22:user/repo.git is invalid. Use the ssh:// scheme form to specify a custom port.

Technical Notes

SSH Git URLs use SCP-like syntax (host:path). Group 1 = hostname, group 2 = repository path. The colon is not a port separator here.

Have a pattern that belongs in the vault?

Submit it for review — community-verified patterns get credited to your GitHub handle. Free submissions join the queue. Priority review available for $15.

Submit a Pattern