Example #1
0
def CreateRepoGithub(repo, desc):

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

    remote = GithubRemote(src)
    if remote.repoExists():
        remote.moveRepo(dest)
Example #3
0
def DeleteRepoGithub(repo):

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