码迷,mamicode.com
首页 > 其他好文 > 详细

GIT clone分支 去掉根目录

时间:2020-04-29 18:29:07      阅读:160      评论:0      收藏:0      [点我收藏+]

标签:否则   其它   结果   直接   提示   错误   clone   nbsp   完整路径   

当前文件夹 d:\mygit\

 

clone到当前文件

git clone http://x.com/mytest.git
/*
结果:
会在当前文件夹下生成 mytest 默认文件夹
完整路径 d:\mygit\mytest\...(文件)
*/

clone到指定文件夹

注意:请确保指定的的文件夹下没有其它文件,否则会提示错误信息

git clone http://x.com/mytest.git "./"
/*
结果:
会直接将远程文件克隆在当前文件夹下
完整路径 d:\mygit\...(文件)
*/


git clone http://x.com/mytest.git "d:\mygit2"
/*
结果:
会直接将远程文件克隆在指定文件夹下
完整路径 d:\mygit2\...(文件)
*/

clone指定分支

git clone -b branch_name http://x.com/mytest.git
/*
结果:
会在当前文件夹下生成 mytest 默认文件夹
完整路径 d:\mygit\mytest\...(文件)
*/

GIT clone分支 去掉根目录

标签:否则   其它   结果   直接   提示   错误   clone   nbsp   完整路径   

原文地址:https://www.cnblogs.com/qutao125/p/12803335.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!