You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
(?:https?|git)://([^/]+)/ (?# group 1 here can be null if group 2 matches)
381
+
| (?# the alternation making it so that only either should match)
382
+
git@([^:]+):/? (?# group 2 here can be null if group 1 matches)
383
+
)
384
+
(?# removing what follows makes the two first groups nullable, although it then has group 2 unsettable which looks buggy too as PREG_UNMATCHED_AS_NULL is present)
0 commit comments