コード例 #1
0
def CreateRepoGithub(repo, desc):

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

    remote = GithubRemote(src)
    if remote.repoExists():
        remote.moveRepo(dest)
コード例 #3
0
def DeleteRepoGithub(repo):

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