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.d