git 使用步骤

账号设置

第一步,git config --global --list 验证邮箱

第二步,git config --global user.name "yourname",git config --global user.email myemail@qq.com 设置全局用户名和邮箱,

第三步,ssh-keygen -t rsa -C "这里换上你的邮箱",生成秘钥,

第四步,到git仓库,添加秘钥,

第五部,ssh -T git@github.com 测试一下通不通,不通就是ssh-agent -s  ssh-add ~/.ssh/id_rsa 操作这两步

git保存用户名密码

echo "[credential]" >> .git/config
echo " helper = store" >> .git/config

posted @ 2021-02-19 19:00  gygang  阅读(93)  评论(0编辑  收藏  举报