Uninstall a Jekyll-Bootstrap theme

609 Views Asked by At

I installed several Jekyll-Bootstrap themes using rake as described here.

rake theme:install git="https://github.com/jekyllbootstrap/theme-the-program.git"

How do I uninstall the themes I don't want? Do I need to manually delete all the associated files?

1

There are 1 best solutions below

0
On

Just to make sure this goes down as answered, I want to put down what David Jacquel said in his comments:

File folders for themes are stored in _includes/themes and assets/themes. Delete these and your unwanted themes will be gone.

A second option for removal, which I'm not positive about, is to run the reverse of what you did to install, in your case: rake theme:uninstall git="https://github.com/jekyllbootstrap/theme-the-program.git". For others, it might be gem uninstall [theme-gem-name] if you installed the theme that way.