Git
crabdave
这个作者很懒,什么都没留下…
展开
-
CentOS Gitweb Nginx 私服搭建
CentOS Gitweb Nginx 私服搭建 参考:http://blog.csdn.net/lifetragedy/article/details/51658266 安装软件:$ yum install curl-devel expat-devel gettext-devel openssl-devel zlib-devel perl-devel$ yum i...原创 2016-07-26 17:09:48 · 276 阅读 · 0 评论 -
Git常用操作命令
Git常用操作命令 创建公私钥:$ ssh-keygen -t rsa -C "crabdave@126.com"你需要把邮件地址换成你自己的邮件地址,然后一路回车,使用默认值即可,由于这个Key也不是用于军事目的,所以也无需设置密码。 .ssh里面有id_rsa和id_rsa.pub两个文件,这两个就是SSH Key的秘钥对,id_rsa是私钥,不能泄露出去,id_r...原创 2016-07-26 17:18:37 · 98 阅读 · 0 评论 -
error occurred during unpacking on the remote end: unpack-objects abnormal exit
error occurred during unpacking on the remote end: unpack-objects abnormal exit .git/object/没有group写权限导致 chmod 775 -R hello.git原创 2016-07-26 18:56:36 · 2355 阅读 · 0 评论 -
git clone http服务时出现异常:The requested URL returned error: 401 Unauthorized while a
git clone http服务时出现异常:The requested URL returned error: 401 Unauthorized while accessing版本问题 安装新版git:1.wget -O git.zip https://github.com/git/git/archive/master.zip 2.unzip git.zip 3.cd g...原创 2016-09-06 09:26:57 · 285 阅读 · 0 评论 -
git push 时出现error: RPC failed; result=22 HTTP code = 413
git push 时出现error: RPC failed; result=22 HTTP code = 413 主要是nginx对传输的内容大小做了限制设置nginx 的client_max_body_size 参考:http://blog.csdn.net/suirosu/article/details/40045983...原创 2016-12-12 14:47:44 · 315 阅读 · 0 评论 -
Git 仓库初始化
Git 仓库初始化 使用git用户初始化git init --bare abc.git 允许http访问cd abc.gitgit config --file config http.receivepack true 使用root授权cd ..chmod 775 -R abc.git 客户端克隆git clone http://git...原创 2016-12-26 16:07:10 · 144 阅读 · 0 评论