- 1、初始化
git init
image.png
- 2、上传到暂存区
git add .
image.png
- 3.提交说明
git commit -m "first commit"
image.png
- 4.关联远程版本库
git remote add origin https://gitee.com/****************.git
image.png
- 5.推送到远程master分支
git push -u origin "master"
image.png
网友评论