Git命令 克隆代码:git clone 创建分支:git branch branchname 切换分支:git checkout branchname 添加更改:git add *.py 提交更改:git commit -a -m 推送分支:git push origin yourbranchname 查看状态:git status