Git 从远端指定分支克隆代码到本地
不指定分支默认是master
git clone + clone 地址 # 例如 git clone https://amc-msra.visualstudio.com/xxx/_xx/xxxxxx
指定分支
git clone -b + 要clone的分支名 + 仓库地址 # 例如 git clone -b stock-data-spider-dev https://amc-msra.visualstudio.com/xxxx
hello world!!!