目录
[1. 先下好git](#1. 先下好git)
[2. 将gitee项目克隆下来](#2. 将gitee项目克隆下来)
[3. 同步远程仓库](#3. 同步远程仓库)
[4. 设置身份标识](#4. 设置身份标识)
[5. 三板斧](#5. 三板斧)
[5.1 git add](#5.1 git add)
[5.2 git commit](#5.2 git commit)
[5.3 git push](#5.3 git push)
1. 先下好git

2. 将gitee项目克隆下来
bash
git clone 仓库链接
3. 同步远程仓库
bash
git pull
4. 设置身份标识
bash
git config --global user.name "你的名字"
git config --global user.email "你的Gitee邮箱"
5. 三板斧
5.1 git add
添加文件到本地仓库。
bash
git add 文件名
5.2 git commit
备注提交信息。
bash
git commit -m "文件备注"
5.3 git push
提交本地仓库中的文件至远端仓库。
bash
git push
然后会提示输入gitee的用户名和密码,密码不回显。