blob: d0b84b31ed2d29098ca9f3ec9e882c10f059e370 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
from cgit.repos.repo import BitbucketRepo, GithubRepo, Repo
MY_REPOS = (
GithubRepo('xyz'),
GithubRepo('foo/bar', user='test', via_ssh=False),
BitbucketRepo('xyz'),
BitbucketRepo('foo/bar', desc='Foo (Bar)'),
Repo('tmp/tmp', clone_url='https://example.com/tmp.git', owner='John Doe'),
)
|