1、git clone git@git.oschina.net:***/***.git
出现:Warning: Permanently added the RSA host key for IP address '120.55.226.24' to the list of known hosts.
解决方法:hosts里面添加120.55.226.24 git.oschina.net
出现:Permission denied (publickey).
解决方法:添加SSH公钥在码云上,参考路径:http://git.mydoc.io/?t=180845
2、改变git库和用户时,需要先设置SSH 密钥,才能发起ssh push 和pull代码
ssh-keygen -t rsa -C "eskimoxiaowu@dingtalk.com" -b 4096 --设置公有密钥
cat ~/.ssh/id_rsa.pub ---查看公有密钥
3、设置用户权限
git init // 项目初始化git
git config --global user.name "Author Name" // 设置用户名
git config --global user.email "Author Email" // 设置用户邮箱
4、获取代码和提交
git init // 项目初始化git
git remote add origin <你的项目地址> //注:项目地址形式为:https://gitee.com/xxx/xxx.git或者 git@gitee.com:xxx/xxx.git
git clone <你的项目地址>
git pull origin master <这里需要修改/添加文件,否则与原文件相比就没有变动>
git add .
git commit -m "第一次提交"
git push origin master