/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to breezy/git/__init__.py

Fix various Git issues: allow_collaboration for GitLab, gopkg.in access, error reporting.

Merged from https://code.launchpad.net/~jelmer/brz/git-fixes/+merge/381193

Show diffs side-by-side

added added

removed removed

Lines of Context:
149
149
def is_github_url(url):
150
150
    (scheme, user, password, host, port,
151
151
     path) = urlutils.parse_url(url)
152
 
    return host == "github.com"
 
152
    return host in ("github.com", "gopkg.in")
153
153
 
154
154
 
155
155
class RemoteGitProber(Prober):