예제 #1
0
파일: core.py 프로젝트: rfldong/archub
def push():
    repo = config.repo
    assert repo.is_dirty(
    ) is False, 'Your branch is dirty; commit your changes and try again.'
    remote = repo.remote()
    assert remote.exists(
    ), 'Repository remote [{}] doesn\'t exist; aborting.'.format(remote.name)
    # push the current branch to origin as a remote branch
    ret = remote.push('refs/heads/{0}:refs/heads/{0}'.format(
        repo.active_branch.name))
    if repo.active_branch.tracking_branch() is None:
        # we aren't tracking our remote branch, let's do that
        repo.active_branch.set_tracking_branch(
            RemoteReference(
                repo,
                'refs/remotes/origin/{}'.format(repo.active_branch.name)))