GitPython推送JSON截断

时间:2014-05-18 08:19:55

标签: gitpython

我在Windows中使用以下命令将文件推送到由JSON库转储的git(使用GitPython):

json.dump(data, json_output,sort_keys=True)

repo.git.add("test.json")
repo.git.commit(m="test")
repo.remotes.origin.push(repo.head)

文件到达正常,但当我在BitBucket中查看它时,它已被截断:

(行尾的部分输出) " logger_severity":" LOGGER_SEVERITY_INFO"},{" logger_obje< - truncated

但是,如果我使用git bash并只使用git push origin master,它在BitBucket中看起来很好:

(显示部分输出) ,"名称":"解放安圭拉 - dev02"}

有什么想法吗?

0 个答案:

没有答案