#!/usr/bin/env bash
## Hard reset the working directory, then zap any files not known to git.
## Source: git-extra-commands

#
# Cleanse your working directory with fire

git reset --hard HEAD && git clean -fdx
