git 远程多分支,本地如何切换分支

1、git clone url

先clone 项目,git branch -a 查看所有分支,发现有多个远程分支

git 远程多分支,本地如何切换分支_第1张图片

2、假如想在 remote 分支工作,但是本地还没有 remote 分支,可以先输入命令:

git  checkout ,不要按回车键,按 Tab 键提示

git 远程多分支,本地如何切换分支_第2张图片

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 看一下

 git 远程多分支,本地如何切换分支_第3张图片

4、当前本地分支就是 remote ,可以修改提交了。 

你可能感兴趣的:(git,操作,git)