
git
sunxboy
这个作者很懒,什么都没留下…
展开
-
git push 报错"fatal: The remote end hung up unexpectedly"
git push 时老是报出此错误,分析一下: 问题原因:由于提交文件内容过大,导致git报错。 解决方案:修改http请求最大容量 $ git config http.postBuffer 524288000 ...原创 2015-01-06 19:53:39 · 278 阅读 · 0 评论 -
Git Add 的几种用法
Summary: git add -A stages All git add . stages new and modified, without deleted git add -u stages modified and deleted, without new原创 2014-11-20 13:09:08 · 459 阅读 · 0 评论 -
如何添加public key使能访问多个git 服务器
1. 在~/.ssh下添加config文件,如下步骤: ~/.ssh $ vi config Host git.oschina.net HostName git.oschina.net PreferredAuthentications publickey IdentityFile ~/.ssh/osc_id_rsa Host github.com HostNa...原创 2014-11-20 14:35:20 · 438 阅读 · 0 评论