版本控制系统git学习

git初学教程地址

git概览:http://blog.jobbole.com/25775/

git GUI 操作教程:http://hi.baidu.com/mvp_xuan/item/789262104e758f3bb93180d2

git 分支操作:http://fsjoy.blog.51cto.com/318484/245081 和http://hi.baidu.com/tiger_tnt/item/b3becb164b67870cb88a1a54



遇到的问题与解决方法

git clone https 代码异常处理办法:

#git clone https://github.com/couchbase/geocouch.git-b couchdb1.2.x
error: SSL certificate problem, verify that the CA cert is OK. Details:
error:14090086:SSL routines:SSL3_GET_SERVER_CERTIFICATE:certificate verifyfailed while accessing https://github.com/couchbase/geocouch.git/info/refs
fatal: HTTP request failed

认证请求失败,解决方法如下:

#git config --global http.sslverify "false"
#git clone https://github.com/couchbase/geocouch.git -b couchdb1.2.x

你可能感兴趣的:(版本控制系统git学习)