Gitlab中的Git react文件夹

a64a0gku  于 2022-11-20  发布在  Git
关注(0)|答案(1)|浏览(127)

我将为我的项目制作一个git,包含spring和react,如下所示:

在我创建一个本地的repo之后,把它推到gitlab中,它告诉我:顺便说一句,在我git push之前,我必须写“git pull --rebase origin main”,否则我不能把我的repo推到gitlab。但我想这可能不是原因。

然后gitlab中的react文件夹出现问题,spring文件夹没有问题,如下所示:我无法打开gitlab中的react文件夹。

所以我的问题是:为什么只有react文件夹有这个问题,而spring没有?我该如何修复它?当我用vs代码打开react文件夹时,当我做了一些修改时,版本控制工具也不起作用。
非常感谢你的回答!

7rfyedvj

7rfyedvj1#

为什么只有react文件夹有这个问题,而spring没有呢?
因为delivery-react很可能是一个嵌套的Git仓库(意味着存在一个delivery-react/.git),除非你的主仓库中有一个.gitmodules文件。
如果要将delivery-react添加为常规文件夹:

git rm --cached delivery-react  # no trailing /
git commit -m "Remove nested folder"
git add delivery-react
git commit -m "Add deliver-react"
git push

相关问题