Github上的Create-react-app奇怪的文件夹结构

时间:2017-03-12 23:09:27

标签: git reactjs github create-react-app

我正在使用create-react-apphttps://github.com/facebookincubator/create-react-app)来启动我的React应用程序。这是我做的:

  1. create-react-app barrex(在文件目录中)
  2. cd barrex
  3. git add -u
  4. git commit -m "Starting new project"
  5. git push -u origin master
  6. 我在我的Github上创建了一个名为“barrex”的新repo,我假设当我将它推送到我的Github时,它只显示我文件夹中的文件,例如src,{{1} },public等。但是,它也以某种方式将我的Documents文件夹放在那里。

    enter image description here

    只有当我在此文件夹中单击时,才能获得项目文件。

    enter image description here

    为什么会这样?

1 个答案:

答案 0 :(得分:1)

请改为执行以下步骤:

  1. create-react-app barrex
  2. cd barrex
  3. git init
  4. git remote add origin(https://)git@github.com:UserName/barrex.git

    注意:忽略"(https://)"如果您使用的是ssh

  5. git add。

  6. git commit -m" Initial Commit"
  7. git push -u origin master
  8. 我希望这适合你。