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

2021/12/17 6:27:39

本文主要是介绍Git 报错:fatal: destination path ‘.‘ already exists and is not an empty directory.,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

目录

问题

解决

方法一、删除 .git 文件

方法一、新建目录


问题

今天执行 git clone 命令时遇到如下报错信息:

fatal: destination path '.' already exists and is not an empty directory.

解决

方法一、删除 .git 文件

正如报错信息所说的,当前目录已经存在了 git 工程,可以先执行如下命令:

rm -rf .git

再执行命令:

git clone https://git.data-mining.com/007/996.git

如果担心上述行为会影响本机现有的工程结构,可以尝试如下方法。

方法一、新建目录

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

mkdir liuzhen007

cd liuzhen007

再执行工程 clone 命令,对应的命令如下:

git clone https://git.data-mining.com/007/996.git

作者简介:大家好



这篇关于Git 报错:fatal: destination path ‘.‘ already exists and is not an empty directory.的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程