git分支操作 发表于 2018-09-11 | 分类于 git | 字数统计: 29(字) | 阅读时长: 1(分) 1.checkout远程分支到本地1git checkout -b <local_branch_name> origin/<remote_branch_name> 2.提交到远程分支1git push origin <remote_branch_name> git