克隆远程库
$ git clone http://x.x.x.x:xx/pshizh/learngit.git$ git clone -b dev http://x.x.x.x:xx/pshizh/learngit.git$ git remote -v
origin http://x.x.x.x:xx/pshizh/learngit.git (fetch)
origin http://x.x.x.x:xx/pshizh/learngit.git (push)$ cd learngit
$ git pull origin dev:devLast updated