赞
踩
配置Git
配置SSH公钥
安装完Git以后,打开Git Bash。
执行如下命令生成ssh公钥:
ssh-keygen -t rsa -C "your_email@xxx.com"
# 所有提示点击回车
所有提示点击回车
查看你的公钥:
cat ~/.ssh/id_rsa.pub
# 复制显示的公钥
打开码云的ssh公钥管理页面:https://gitee.com/profile/sshkeys
回到Git Bash输入如下命令,提示: "You’ve successfully authenticated, but GITEE.COM does not provide shell access."代表添加成功:
ssh -T git@gitee.com
# You've successfully authenticated, but GITEE.COM does not provide shell access.代表成功添加
Git配置
初始化git,在你的Git Bash中输入如下命令,添加你的码云昵称,以及你的码云注册时的邮箱。
git config --global user.name yourname # "你码云的名字或昵称"
git config --global user.email youremail@xxx.com # "你码云的主邮箱"
Git配置完毕,进入新建仓库。
新建远程仓库
首先
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。