上FPO Git基本命令 创建一个分支 git checkout -b {your_branch_name} 推入分支 git add --all git commit -m "message" git push origin {your_branch_name} 从分支拉 git pull origin develop