我使用rake安装了几个Jekyll-Bootstrap主题,如下所述。
rake theme:install git="https://github.com/jekyllbootstrap/theme-the-program.git"
如何卸载不想要的主题?是否需要手动删除所有关联文件?
为了确保这个问题得到回答,我想写下David Jacquel在他的评论中所说的话:
主题文件夹存放于_includes/themes
和assets/themes
。删除这些,你不想要的主题将会消失。
移除的第二个选项,我不太肯定,是运行与你安装时相反的操作,在你的情况下:rake theme:uninstall git="https://github.com/jekyllbootstrap/theme-the-program.git"
。对于其他人,如果您以这种方式安装主题,则可能是gem uninstall [theme-gem-name]
。