一、git配置用户名和邮箱(一次)
配置命令:
git config --global user.name "用户名"
git config --global user.email "邮箱"
查看命令:
查看用户名git config --global user.name
查看密码 git config --global user.password
查看邮箱git config --global user.email
查看git版本git --version
查看配置信息git config --list
修改用户名git config --global user.name "新的用户名"
修改密码git config --global user.password "新的密码"
修改邮箱git config --global user.email "新的邮箱"
用户名过多时:
git config --global --replace-all user.name "用户名"
git config --global --replace-all uesr.email "邮箱"
最后输入下方命令保存,供以后的git程序使用
git config --global credential.helper store
二、git配置ssh生成密钥对(一次)
首先,新建一个文件夹做自己的代码仓库。
git在文件夹内右键,点击git bash here
SSH 公钥默认储存在账户的主目录下的 ~/.ssh 目录。进去看看有没有id_rsa和id_rsa.pub,有 .pub 后缀的文件就是公钥,另一个文件则是密钥。
cd ~/.ssh
ls
假如没有这些文件,甚至连 .ssh 目录都没有,可以用 ssh-keygen 来创建,命令如下:
ssh-keygen -t rsa -C "你的邮箱"
Enter same passphrase again: [Type passphrase again]提示你输入密码
也可以不输密码,一直回车。
直至显示:Your public key has been saved in ****/.ssh/id_rsa.pub. The key fingerprint is: 本地的密钥对就生成了。
三、添加公钥到你的远程仓库github(一次)
查看生成的公钥:
cat ~/.ssh/id_rsa.pub
复制生成的公钥
登录github账户-》点击头像-》setting-》ssh key
四、拷贝git仓库到本地
进入git网址,找到自己想下载的代码,复制ssh
回到git bash
git clont 刚刚复制的地址
五、git使用
版权归原作者 淳淳在努力 所有, 如有侵权,请联系我们删除。