# 查看状态 git status # 添加文件 git add . git add 文件名 # 提交 git commit -m "描述" # 推送 git push origin main # 拉取 git pull origin main