首页 > 代码库 > 【git】之clone(克隆)

【git】之clone(克隆)

 

直接克隆

 git clone  https://github.com/gyjx/test.git

 

指定克隆某个分支

 git clone -b dev https://github.com/gyjx/test.git

 

 

【git】之clone(克隆)