git branch -a
同步远程分支
git fetch
将本地分支与远程保持同步
git checkout -b 本地分支名x origin/远程分支名x
拉取远程分支并同时创建对应的本地分支
➢ 查看分支
查看本地所有分支
git branch
查看远程所有分支
git branch -r
查看本地和远程所有分支
git branch -a
➢ 同步远程分支
name
为远程分支的名称(iteration-1.1.1-dev)
git fetch origin name
git checkout -b 本地分支名 origin/远程分支名