工作台式机:TaiPC
本机上已经配置过工作的ssh-key访问公司的代码库,现在需要再配一个ssh-key访问自己github上的仓库。
1.ssh-keygen -t rsa -C"xxxx@163.com"
2.mv id_rsa_github* ~/.ssh
3.将~/.ssh/id_rsa_github.pub添加到github的ssh-key中
4.创建并克隆仓库
git clone https://github.com/mengmayang/runningsheep-raft.git
5.查看当前仓库配置
git config --local -l
6.给当前仓库新配置
git config --local user.name "xxxx"
git config --local user.email "xxxx@163.com"
即可
网友评论