## How-Tos ### Cleaning out items from the Activity Feed If there are things in the Activity Feed that you don't want showing up, you can delete them from the database. The feed pulls from the `action` table. For instance, if you want to delete all entries that involved pushing up a branch called `offending` with commits, then deleting that branch, in Sqlite: ```sql select * from action where content like '%offending%'; delete from action where content like '%offending%'; select * from action where ref_name like '%offending%'; delete from action where ref_name like '%offending%'; ```