1,首先配置你的用户名和邮箱
git config --global user.email "you@example.com"
git config --global user.name "Your Name"
2,生成你自己的SSH
在本地的根目录下 找到 .ssh/ cd.ssh/
查看 .ssh/ 下的详细目录 ls
找到.ssh/ 下的 id_rsa.pub目录
生成 秘钥cat id_rsa.pub
复制到github上 添加SSH 解决权限问题
ssh-keygen -t rsa -C "youremail@example.com"
3,从git上克隆一个项目
在文件中鼠标右键 打开 git bash here
git clone 地址
4,在本地查看状态
git status
5,从本地添加文件
git add .
6,从本地提交文件
git commit -m"注释"
7,从本地上传文件
git push
8,从本地下载文件
git pull