1.git
1) 首先要安装Git 上官网 下载
2) 桌面右键点击 git bash
2.注册gitee 并且 新建仓库
1)百度 打开码云
2)注册 进入码云
3)点击右上角+ 号 创建仓库
3.克隆 远程仓库到本地
1)桌面新建文件夹 右键 git bush
2)git clone "远程仓库地址"
git clone https://gitee.com/my-mouth-is-hungry-again/p9-2102-a.git
4.本地到远程
1)git add . 将本地的暂存
2)git commit -m "描述信息"
git config --global user.email "你的邮箱"
git config --global user.name "你的名字"
3)git push 上传到Gitee