我有一个Github project,用于在stackoverflow和其他stackexchange站点上查看问题。在查看问题后,您可以收到有关该问题的新答案/评论的通知。
此项目已包含index.html
个文件。现在,我正在尝试为该项目创建 github页面。因为,github页面还需要一个index.html
,所以它将覆盖我在项目中使用的当前index.html
。如何防止出现这种情况,以便我的github页面index.html
不会影响项目中使用的index.html
。 ?
我已经创建了像这样的gh-pages分支
git checkout -b gh-pages
PS:我不想重命名chrome-extension中使用的index.html。这将是我的最后一个选择。
答案 0 :(得分:1)
如果将源移动到子目录中(许多项目都有一个名为src
的目录),则不应该有任何冲突。
您的新存储库结构可能如下所示:
docs/
src/
content_scripts/
images/
libs/
ItemSelector.js
...
index.html (this is the existing file)
...
.gitignore
index.html (this is the new gh-pages file)
README.md