这是有关在没有本地工作目录(Python push files to Github remote repo without local working directory)的情况下推送到远程仓库的问题的后续问题。我想知道该文件是否已经存在于远程仓库中,而我只想用一个同名的修改文件来更新它吗? (例如,相当于在Github网站上,上传遥控器上已经存在的文件的修改版本)

编辑:我们提出了一个解决方案:

contents_object = repository.contents(file_path)
push_status = contents_object.update("test_message",contents)


但是,尽管此操作在一台计算机上成功运行,但在另一台计算机上引发了错误(特别是第一行将出现AttributeError)。这是因为github3的潜在版本不同吗?

最佳答案

似乎很清楚,在github3版本0.9.6下,这是您现在使用pip install github3.pyhttps://github3py.readthedocs.io/en/master/#installation)所获得的,这将起作用(无需任何本地工作目录即可对远程仓库进行更新):

def update_to_git(username,password,path,account,repo,message):
    files_to_upload = [path]
    gh = github3.login(username=username, password=password)
    repository = gh.repository(account, repo)
    for file_info in files_to_upload:
        with open(file_info, 'rb') as fd:
            contents = fd.read()
        contents_object = repository.contents(file_info)
        contents_object.update(message,contents)


但是,如果您具有github3版本1.0.0a4,则将无法使用。具体来说,您可能会在AttributeError行中得到一个contents_object = repository.contents(file_info),这可能是由于github3中实现的更改所致。

08-27 13:49