Git使用
Posted minidog
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Git使用相关的知识,希望对你有一定的参考价值。
1.安装成功后运行‘Git Bash’
2.点击后弹出命令框
3.查看账号,邮箱
命令 git config user.name
git config user.email
4.设置账号,邮箱
命令 git config --global user.name ‘账号‘
git config --global user.email ‘邮箱‘
5.生成秘钥ssh
命令 ssh-keygen -t rsa -C ‘邮箱‘
点击三次回车
说明安装成功
()中的地址为秘钥在你本机的存储位置
5.查看秘钥ssh
命令 cat ~/.ssh/id_rsa.pub
以上是关于Git使用的主要内容,如果未能解决你的问题,请参考以下文章