Visual Studio 代码终端 "git add . " 发送以下错误消息 "fatal: not a git repository (or any of the parent directories): .git"
Visual Studio Code Terminal "git add . " sends following error message "fatal: not a git repository (or any of the parent directories): .git"
我有一个项目要从 Visual Studio 代码上传,使用终端和命令:
git add .
请参阅下面的错误消息。
fatal: not a git repository (or any of the parent directories): .git
我不知道如何解决这个问题。
此错误消息表明您尚未启动 git 存储库,或者您正在尝试从错误的路径暂存文件。在您的终端中转到目录并再次尝试暂存文件。它应该按预期工作。
错误消息表明您没有 git 存储库。你需要做一个,然后你可以提交更改,并将它推送到远程:
<in the root directory of the project>
git init
git add <files to add>
git commit
git remote add origin <url for remote>
git push --set-upstream origin master
您可以从 git 主机提供商处获得遥控器的 url。你在那里做一个 project/repository,它会给你 git URL。
我有一个项目要从 Visual Studio 代码上传,使用终端和命令:
git add .
请参阅下面的错误消息。
fatal: not a git repository (or any of the parent directories): .git
我不知道如何解决这个问题。
此错误消息表明您尚未启动 git 存储库,或者您正在尝试从错误的路径暂存文件。在您的终端中转到目录并再次尝试暂存文件。它应该按预期工作。
错误消息表明您没有 git 存储库。你需要做一个,然后你可以提交更改,并将它推送到远程:
<in the root directory of the project>
git init
git add <files to add>
git commit
git remote add origin <url for remote>
git push --set-upstream origin master
您可以从 git 主机提供商处获得遥控器的 url。你在那里做一个 project/repository,它会给你 git URL。