友情提示:
今天在服务器拉代码的时候,居然遇到fatal: unable to access 'https://******@github.com/******/******.git/': SSL connect error的错误,刚开始我还以为是git版本低了,把git的版本给升级到2.14了,居然还有这样的问题,下面是解决办法:
1.升级nss版本
yum update nss -y
2.将https改为git
git clone git://******@github.com/******/******.git
如果以上两种解决方法都无法解决你的问题,那么请再执行:
yum update -y nss cu...
centos 6.x/7.x使用yum升级git版本
相信很多服务器上的git要么是1.7.1或者就是1.8.x,如果要大面积升级的话,还是用yum来搞方便.
1.安装yum源
centos6:
wget http://opensource.wandisco.com/centos/6/git/x86_64/wandisco-git-release-6-1.noarch.rpm && rpm -ivh wandisco-git-release-6-1.noarch.rpm
centos7:
wget http://opensource.wandisco.com/centos/7/git/x86_64/wandisc...
利用coding.net制作CocoaPods国内镜像源
在上一篇文章中说了怎么解决无限卡在Setting up CocoaPods master repo,我就想有没有办法在本地或者国内搭建个来方便他们下载,还好大神们留下一些教程.下面我们来看怎么制作:
1.先升级git版本
git --version
git version 1.7.1
如果输出的是1.7.x,那么就要升级git到1.8.x去了,不然下面的基本上就不用看了.
下载更新git源:
wget -O /etc/yum.repos.d/PUIAS_6_computational.repo https://gitlab.com/gitlab-org/gitlab- recip...
redmine用git repo镜像脚本
当用git来管理代码,后台用gitolite,redmine来管理项目,redmine中可以结合git来参看git提交信息时,非常有用.
以下代码参照了http://blog.buginception.com/blog/2012/04/02/redmine-use-git-code-review
代码如下:
#!/bin/bash set -x if [ "$1" = "" ]; then echo "Usage: $0 [repo]" exit 1 fi REPO=$1.git GIT_BASE=/home/git/repositories MIRROR_PATH=/home/jxb/git-mirrors REPO_PATH=$MIRROR_PATH/$REP...