Skip to content

Instantly share code, notes, and snippets.

View jaccus's full-sized avatar

Jaccus jaccus

View GitHub Profile
@jaccus
jaccus / .bash_profile
Created April 5, 2016 13:26
Alias for git clean -xdf of all Git repositories in current directory
alias cleanall='for repoDir in `find . -name ".git"`; do git --git-dir=$repoDir --work-tree=$repoDir/.. clean -xdf; done'