1、git clone url
先clone 项目,git branch -a 查看所有分支,发现有多个远程分支
2、假如想在 remote 分支工作,但是本地还没有 remote 分支,可以先输入命令:
git checkout ,不要按回车键,按 Tab 键提示
3、执行命令:git checkout remote ,看结果
Checking out files: 100% (1234/1234), Done
Switched to a new branch ‘remote’
Branch ‘remote’ set up to track remote branch ‘remote’ from ‘’origin
就是本地 remote 分支对应远程 remote 分支。
再用 git branch -a 看一下
4、当前本地分支就是 remote ,可以修改提交了。