1. 准备
- gitee账号
- git软件,下载地址https://git-scm.com/
- 安装git
2. 创建gitee仓库
点击创建
出现教程
3. git全局配置
git config --global user.name "wujialiang999"
git config --global user.email "1647113057@qq.com"
4. 创建git仓库
mkdir abp-study
cd abp-study
git init
touch README.md
git add README.md
git commit -m "first commit"
git remote add origin https://gitee.com/wujialiang999/abp-study.git
git push -u origin "master"
输入gitee账号密码之后就可以push成功
另一种方式是git clone 下载代码即可