 1. git status                                // 查看当前目录更新
1. git status                                // 查看当前目录更新
 2. git checkout -b <NEW_BRANCH>                // 新切一个分支(只在第一次操作的时候做,后面就不用做了)
 3. git pull origin <BRANCH_NAME>                // 从指定分支拉代码
 4. git add xxx xxx xxx                                                // 添加需要提交的文件到暂存容器中(如果是提交本地的所有更新,可以用 git add .)
 5. git commit -m "fix: xxxx/feat:xxxx"                // 提交的备注信息
 6. git push                                                                // 提交代码到当前分支的远程代码库