我正在尝试在github页面上托管我的本地网站,我目前在自述文件旁边有上传文件夹,而index.html上写着Hello World。这是我现在所拥有的。
如何将文件夹中的所有内容移动到与index.html相同的级别?从字面上看,我的整个网站都在该文件夹中,包含所有图片,css和js。我是github的新手所以需要宝宝步骤。谢谢你的帮助!
编辑:我克隆了分支,但现在当我尝试移动它时,我收到了一个错误。致命:目的地存在,source = upload / index.html,destination = index.html
nvm调试它必须首先删除index.html
答案 0 :(得分:2)
您可以克隆该GitHub存储库,并且(在本地克隆后)执行:
cd /path/to/my/clone
git rm index.html
git mv upload/* .
git commit -m "move upload content"
git push