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
While using giturlparse with Microsoft VSTS git urls (visualstudio.com), I noticed the parser fails to detect them. They are a bit weird by syntax but git command line tools treat them well.
While using giturlparse with Microsoft VSTS git urls (visualstudio.com), I noticed the parser fails to detect them. They are a bit weird by syntax but git command line tools treat them well.
Example:
If it's of any value, here's a regex that I use to match at least https-type VSTS urls. VSTS might provide other url types too.
re.compile('https:\/\/(?:.*@)?(?P<organization>[a-zA-Z0-9]+)\.visualstudio.com\/(?P<project>[^\/]*)\/_(?P<repotype>[^\/]*)\/(?P<repo>.*)')
Version:
giturlparse==0.9.1
The text was updated successfully, but these errors were encountered: