0

我使用 React Starter Kit 编写了一个网站,现在我想将其导入 github。

我尝试使用 github 的说明导入它,但它导入了原始存储库的克隆,并带有关于先前提交的注释。很奇怪。

无论如何,如何将我的新网站导入 github?

谢谢,瑞安

4

1 回答 1

0

我必须做:

rm -rf .git
git init
git add src docs ... <- rest of stuff you want to commit
git commit -m "first commit"
git remote add origin https://github.com/..
git push -u origin master

这似乎奏效了

于 2016-05-09T15:47:19.560 回答