赞
踩
1.下载git,使用命令:
yum install git
2.配置git:
1 git config --global user.name "Your Name"
2 git config --global user.email "email@example.com"
3 #查看配置是否生效
4 git config --list
3.创建本地仓库:
1 #创建目录
2 mkdir gitspace
3 cd gitspace
4 git init
4.克隆代码
git clone 地址
执行下面指令
ssh-keygen -t rsa -C "your_email@youremail.com"
your_email是你的gitlab或者github上的email
一直回车
默认存在/root/.ssh/id_rsa.pub
cat ~/.ssh/id_rsa.pub
复制粘贴到gitlab上即可
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。