一、初始化git
git init
二、添加该文件夹下的所有文件到本地仓库
git add .
三、添加注释
git commit -m "RuoYi-Cloud-3.6.4"
四、添加远程仓库
4.1 复制远程仓库
https://gitee.com/gitee-libotao/RuoYi-Cloud
4.2 建立本地仓库与远程仓库的关联
git remote add origin https://gitee.com/gitee-libotao/RuoYi-Cloud
五、同步仓库内容
git pull --rebase origin master
六、配置config
git config --global user.name "YOUR NAME"
git config --global user.email "YOUR EMAIL"
七、生成密钥,回车四次
ssh-keygen -t rsa -C "[email protected]"
八、查看秘钥
cat ~/.ssh/id_rsa.pub
标签:git,仓库,config,RuoYi,gitee,--,上传
From: https://www.cnblogs.com/botaoli/p/18186607