git与github问题汇总(2)

上传远程库时,出现如下问题: 可能是push的文件过大导致
解决方法:
windows: 在 .git/config 文件中加入
[http]
postBuffer = 524288000
linux:
git config http.postBuffer 524288000

想要删除分支时出现了问题:Cannot delete the branch “gh-pages” which you are currently on.如下: 原因在于正在使用gh-pages分支,所以删不掉,现在切换一下,然后继续删,如图:
对于直接在远程
建立的分支,直接切换到它直接改后提交就行。