1.使用git clone https://github.com/xxxxxxx/xxxxx.git克隆到本地
2.git add . (add后有空格和点 将改动添加到暂存区)
3.git commit -m "提交说明"
4.git push origin master (将本地更改推送到远程master分支)。
在这过程中错误总结:
a.Please make sure you have the correct access rights and the repository exists.
解决方法:
- 首先重新在git设置名字和邮箱,进入到需要提交的文件夹下
git config --global user.name "yourname"
git config --global user.email“your@email.com"
(yourname是你要设置的名字,your@email是你要设置的邮箱。)
- git输入命令
$ ssh-keygen -t rsa -C "your@email.com"(请填你设置的邮箱地址)
cat /Users/lianyu02/.ssh/id_rsa.pub //这个路劲在你上面不断回车里可以找到将全部的内容复制
- 打开https://github.com/,登陆你的账户,设置进入ssh设置