注:事先切换到源码目录下
列出所有可切换的分支
1
2
$ cd .repo/manifests
$ git branch -a | cut -d / -f 3 [|grep android]
切换到对应的分支
1
$ repo init -b branch_name
同步分支
1
2
$ repo sync
$ repo start branch_name --all
查看当前分支
1
$ repo branches
注:事先切换到源码目录下
1
2
$ cd .repo/manifests
$ git branch -a | cut -d / -f 3 [|grep android]
1
$ repo init -b branch_name
1
2
$ repo sync
$ repo start branch_name --all
1
$ repo branches