Git 本地项目首次提交版本库 2023-02-10
2023-02-09 本文已影响0人
阿然学编程
- 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