Exemplo n.º 1
0
def CreateRepoGithub(repo, desc):

    remote = GithubRemote(repo, desc)
    if not remote.repoExists():
        remote.createRepo()
Exemplo n.º 2
0
def MoveRepoGithub(src, dest):

    remote = GithubRemote(src)
    if remote.repoExists():
        remote.moveRepo(dest)
Exemplo n.º 3
0
def DeleteRepoGithub(repo):

    remote = GithubRemote(repo)
    if remote.repoExists():
        remote.deleteRepo()