Github 上的 Create-react-app 奇怪的文件夹结构
Create-react-app weird folder structure on Github
我正在使用 create-react-app
(https://github.com/facebookincubator/create-react-app) 启动我的 React 应用程序。这是我所做的:
create-react-app barrex
(文档目录内)
cd barrex
git add -u
git commit -m "Starting new project"
git push -u origin master
我在我的 Github 上创建了一个名为 "barrex" 的新存储库,我假设当我将它推送到我的 Github 时,它只会显示我的文件夹中的文件例如 src
、public
、index.html
等。但是,它也以某种方式将我的文档文件夹也放在那里。
只有当我在这个文件夹中单击时,我才会得到项目文件。
为什么会这样?
改为按照以下步骤操作:
- create-react-app barrex
- cd barrex
- git 初始化
git 远程添加源 (https://)git@github.com:UserName/barrex.git
注意:如果您使用的是 ssh,请忽略“(https://)”
git 添加 .
- git commit -m "Initial Commit"
- git push -u origin master
希望对你有用。
我正在使用 create-react-app
(https://github.com/facebookincubator/create-react-app) 启动我的 React 应用程序。这是我所做的:
create-react-app barrex
(文档目录内)cd barrex
git add -u
git commit -m "Starting new project"
git push -u origin master
我在我的 Github 上创建了一个名为 "barrex" 的新存储库,我假设当我将它推送到我的 Github 时,它只会显示我的文件夹中的文件例如 src
、public
、index.html
等。但是,它也以某种方式将我的文档文件夹也放在那里。
只有当我在这个文件夹中单击时,我才会得到项目文件。
为什么会这样?
改为按照以下步骤操作:
- create-react-app barrex
- cd barrex
- git 初始化
git 远程添加源 (https://)git@github.com:UserName/barrex.git
注意:如果您使用的是 ssh,请忽略“(https://)”
git 添加 .
- git commit -m "Initial Commit"
- git push -u origin master
希望对你有用。