Github 存储库文件夹另存为快捷方式问题

Github repository folder saved as shortcut problem

我正在尝试在我的 GitHub 上推送 MERN 堆栈存储库,但客户端文件夹被保存为快捷方式,我已尝试删除客户端中的 git 文件夹,但它仍然不会'工作

我在 gitbash

上的尝试
> git init
> git status
> git add .
> git status
> git commit -m "John ..."
> git remote add origin linktogithubrepo.git
> git push -u origin main

删除 .git 文件夹是不够的。

您还需要删除代表该嵌套存储库根文件夹的 gitlink (a special entry in your index):

git rm --cached client # no trailing /
git add .
git commit -m "Import client content"
git push