常用的Git命令 2021-01-17 本文已影响0人 敏哥的科技频道 Git命令 克隆代码:git clone 创建分支:git branch branchname 切换分支:git checkout branchname 添加更改:git add *.py 提交更改:git commit -a -m 推送分支:git push origin yourbranchname 查看状态:git status