交易是:我在根文件夹中有一个nodejs服务器。在同一位置也有一个git repo。另外,我在“客户端”文件夹中有一个create-react-app。 结构如下:
/client
server.js
package.json
问题是,当我将其推送到我的github仓库时,“ client”文件夹的内容没有添加,我的意思是它的内容为零,内部为零,而其中应该有一个React应用。 有人可以帮我弄清楚发生了什么吗?
答案 0 :(得分:0)
执行以下步骤,前提是您的client
文件中没有.gitignore
文件夹的条目。
1. git add . // it is dot(.) actually
2. git commit -m "you commit message"
3. git pull origin your_branch_name //If multiple people pushing to repo otherwise you can skip this step
4. git push origin your_branch_name