git pull拉取远程指定分支
##########################
1、若git clone之后想拉取某个指定分支:先git pull ,然后git checkout 指定分支名称
shell>> git clone 你的仓库地址 shell>> git pull shell >> git checkout 你的分支名称
2、若git clone之后想拉取某个指定分支:先git fetch origin 分支名称,然后git checkout 指定分支名称
shell>> git clone 你的仓库地址 shell>> git fetch origin 你的分支名称 shell >> git checkout 你的分支名称
强制覆盖本地:
shell>> git fetch --all
shell>> git reset --hard origin/master
shell>> git pull
#####################
##########################################
igoodful@qq.com