首先,打开终端,并cd到你的项目目录下,这是第一步,让我们确定当前目录是否是一个Git仓库。接着,我们可以执行以下命令来初始化一个Git仓库: ```bash git init ``` 这将在当前目录下创建一个隐藏的.git文件夹,表示当前目录是一个Git仓库。接下来,我们需要将项目中的文件添加到Git的暂存区,可以使用以下命令: `...
git commit -m "提交信息" ``` 这将提交缓存区中的所有更改到Git仓库中,并添加一条提交信息。 通过以上四个步骤,你就可以成功解决“fatal: not a git repository”的问题,顺利使用Git管理你的代码了。 总结一下,当你遇到这个问题时,首先需要确认当前目录是否在Git仓库中,如果不是,则需要初始化一个Git仓库;然...
产生原因:一般是没有初始化git本地版本管理仓库,所以无法执行git命令 解决方法:操作之前执行以下命令行: git init
1 首先进入Git Bash Here。2 报错原因是没有初始化git本地版本管理仓库(不是git存储库或任何父目录)。3 执行命令行(初始化一个新本地仓库): git init 4 然后执行git status查看服务状态信息。5 再次执行git remote add origin git@gitee.com:XXX/lqdq.git之后执行git remote ,列出已经存在的远程分支。注...
fatal: Not a git repository (or any of the parent directories): .git 提示说没有.git这样一个目录,解决办法如下: git init就可以了! 当一个人找不到出路的时候,最好的办法就是将当前能做好的事情做到极致,做到无人能及。
1.首先查看.git/config 文件中的origin词条的url地址: 这里我们使用ssh秘钥进行远程连接,确认地址无误,并非报错信息显示 configValue,那为什么会产生这样的报错呢? 2.我们首先要找到这个错误的url到底写在哪个文件中,在网上查询了很多,走了很多弯路,也写在重新安装git都无效,这里有一个问题点:是不是在首次安装git时...
git --解决fatal: Not a git repository 这个错误是说没有.git文件,万能的百度是说:自己新建.git,用command git init. 经过实验,可以暂时解决这个问题。但是新的问题又出现了,我git commit 不了,update不了我刚刚新建的文件到git 网站。 经过研究,发现,我的操作的位置是不对的,应该在git clone 之后,下下来...
Git之fatal: not a git repository (or any of the parent directories): .git问题解决 ①问题出现情况:在使用Gitbash的时候,首先创建了一个3.txt,然后运行gitstatus命令,然后出现了该错误(fatal:notagitrepository(oranyoftheparentdirectories): .git) ②错误原因:没有.git这个目录。 ③解决方法:使用gitinit命...
$ git status fatal: Not a git repository: /home/rospasta/path_old/gitprojecta/.git/modules/.travis I found in /home/rospasta/path_old/gitprojecta/.travis/.git the absolute path of the old location of the project was written. Manually updating this path of the new loca...
When I run git status on my repo I get fatal: Not a git repository: /my repo/.git/modules/docs I've checked and .git exists and contains HEAD with the proper permissions. I can run various other commands fine. If I run git gui it opens fine and will list a couple...