解决Git 报错:fatal: destination path ‘xxx‘ already exists and is not an empty directory

一、背景

拿到开发的Git地址,然后Git clone的时候,检测不出东西,只有一个.git目录,实际无东西。

解决Git 报错:fatal: destination path ‘xxx‘ already exists and is not an empty directory_第1张图片

 二、解决方案

方案一、删除 .git 文件

可手动删除,或执行下面命令

rm -rf .git

然后再执行检出命令

git clone https://git.xxx.com/xxx.git

方案二、新建目录再重新检出

熟悉 linux 命令都知道 rm -rf .git 命令会删除当前目录的 git 记录,如果没有把握的话,最好还是新建一个目录,比如xxx 目录,命令如下:

mkdir xxx

cd xxx

然后再执行检出命令

git clone https://git.xxx.com/xxx.git

方案三、可能没有master分支,切换其他分支检测看看

项目目录下来了,但是点进去什么文件也没有,这是说你的项目地址没有master分支。这是可以
git branch -a

看看远程的分支有哪些
这是可以切换过来到xxx分支,项目就有代码了
git checkout xxx

总结:这个确实坑,我当时也以为项目怎么会没有master分支呢,打开目录页确实什么代码有没下载再来,最后切换了分支才有的。

解决Git 报错:fatal: destination path ‘xxx‘ already exists and is not an empty directory_第2张图片

解决Git 报错:fatal: destination path ‘xxx‘ already exists and is not an empty directory_第3张图片

最后选择某一个分支后,检出成功。

解决Git 报错:fatal: destination path ‘xxx‘ already exists and is not an empty directory_第4张图片

 

 

 

你可能感兴趣的:(git)