创建 gitee 远程仓库
![在这里插入图片描述](https://img8.php1.cn/3cdc5/1e789/882/ae5349d487a00cd1.png?x-oss-process=image/watermark,type_ZmFuZ3poZW5naGVpdGk,shadow_10,text_aHR0cHM6Ly9ibG9nLmNzZG4ubmV0L3dlaXhpbl80NTEzNzU2NQ==,size_16,color_FFFFFF,t_70#pic_center)
![在这里插入图片描述](https://img8.php1.cn/3cdc5/1e789/882/6f916417eb53d77e.png?x-oss-process=image/watermark,type_ZmFuZ3poZW5naGVpdGk,shadow_10,text_aHR0cHM6Ly9ibG9nLmNzZG4ubmV0L3dlaXhpbl80NTEzNzU2NQ==,size_16,color_FFFFFF,t_70#pic_center)
![在这里插入图片描述](https://img8.php1.cn/3cdc5/1e789/882/9178d897392e9828.png?x-oss-process=image/watermark,type_ZmFuZ3poZW5naGVpdGk,shadow_10,text_aHR0cHM6Ly9ibG9nLmNzZG4ubmV0L3dlaXhpbl80NTEzNzU2NQ==,size_16,color_FFFFFF,t_70#pic_center)
$ git status
$ git init
$ git status
$ git add .
$ git status
$ git commit -m “init”
$ git log
$ git remote add orign https://gitee.com/yuan0_0/edu817.git
$ git remote -v
$ git push orign master
$ git push -u orign master
$ git remote rename orign origin
$ git remote -v
$ git push -u origin master
$ git add .
$ git commit -m “”
$ git push
Git 克隆、上传的其他方式
$ cd 123
$ git clone https://gitee.com/name/test.git
$ cd test
$ git remote set-url origin https://gitee.com/name/test.git
$ git add .
$ git commit -m "备注"
$ git push origin master