
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 · 291 阅读 · 0 评论 -
Git Add 的几种用法
Summary:git add -A stages Allgit add . stages new and modified, without deletedgit add -u stages modified and deleted, without new原创 2014-11-20 13:09:08 · 473 阅读 · 0 评论 -
如何添加public key使能访问多个git 服务器
1. 在~/.ssh下添加config文件,如下步骤:~/.ssh$ vi configHost git.oschina.net HostName git.oschina.net PreferredAuthentications publickey IdentityFile ~/.ssh/osc_id_rsaHost github.com HostNa...原创 2014-11-20 14:35:20 · 458 阅读 · 0 评论