1. 第一次拉取 git clone URL 2. 提交 git add . git commit -m"***" git push 3. 拉取 git pull 4. 拉取时出现冲突,本地修改不需要保留 git fetch --all git reset --hard origin/master 5. 拉取时出现冲突,本地修改需要保留 git stash git pull git stash pop 6. 检查分支状态 git status