create-react-app 的内容没有推送到 github 中

IT技术 reactjs git github
2021-05-17 01:46:17

我将 go & react 代码推送到了 github。

Go 代码已成功提交,但 React 代码未成功提交。

React 内容是由create-react-app.

article
├ api
│  └ main.go
└ client
   └ React content made by create-react-app

github 的图片

这是目标github

https://github.com/jpskgc/article

我尝试了以下命令,但没有解决。

error: the following file has staged content different from both the
file and the HEAD:
    client
(use -f to force removal)
$ git rm --cached client -f
rm 'client'

我也尝试了以下命令,但问题没有解决

$ rm -rf client/.git

client 文件夹的内容将在 github 中提交。但实际上没有Promise。

2个回答

问题是两个目录都是 git 存储库,在这种情况下你会有一个submodule
您可以看到此提交添加了一个子module Subproject commit 395ee793f20a65d483a50cb1d11b67e7f80729d0
删除 git 子module但保留文件,请遵循此说明。

mv client subfolder_tmp
git submodule deinit client
git rm --cached client
mv subfolder_tmp client
git add client

我来这篇文章可能有点太晚了。但万一有人仍然想知道如何解决它。这是对我有用的:

// moving to your client folder or whatever 
// the react-app folder is called
cd client
// remove the git in this folder
rm -rf client/.git

现在你回到你的根目录并执行添加、提交和推送。您应该将所有 react-app 文件夹推送到您想要的存储库。