1,首先配置你的用户名和邮箱
git config --global user.email "you@example.com"
git config --global user.name "Your Name"
2,生成你自己的SSH
在本地的根目录下 找到 .ssh/
在.ssh/ 下找到 id_rsa.pub
进入到id_rsa.pub下 找到ssh信息
复制到github上 添加SSH 解决权限问题
ssh-keygen -t rsa -C "youremail@example.com"
3,从git上克隆一个项目
git clone 地址
4,在本地查看状态
git status
5,从本地添加文件
git add .
6,从本地提交文件
git commit -m "提交信息"
7,从本地上传文件
git push
8,从远程下载文件
git pull
网友评论