此问题已在此处有答案:
How to undo git init on a home directory?(1个答案)
4天前关闭。
我在看我朋友的github仓库,然后我错误地接受了vscode上的一些东西。现在我有一个警告说too many changes were detected only the first 10000 will be shown below.
我现在不能修理它,我非常需要帮助
我尝试放弃更改但无法删除
此问题已在此处有答案:
How to undo git init on a home directory?(1个答案)
4天前关闭。
我在看我朋友的github仓库,然后我错误地接受了vscode上的一些东西。现在我有一个警告说too many changes were detected only the first 10000 will be shown below.
我现在不能修理它,我非常需要帮助
我尝试放弃更改但无法删除
1条答案
按热度按时间efzxgjgh1#
你的情况很模糊,因此很难给予你一个准确的答案,但这里有一些想法可能会帮助你。最重要的是找出你当前的工作目录是什么。假设你在Linux上,进入VS Code中的终端并输入
pwd
。如果它输出你的主目录(/home/userName
),你可以简单地输入rm -rf .git
来删除你不小心创建的git仓库。否则,如果它输出项目文件夹(例如/home/userName/git/my-awsome-project
)并且你克隆了你朋友的GitHub仓库,你也可以考虑删除整个项目文件夹并再次克隆。