«

Tree Fiddy, a git aware version of tree

I spend a lot of my computing time in the terminal, so the tree utility is very useful. Unfortunately, it’s not as useful in node projects or other projects that include supporting packages, because it isn’t aware of .gitignore files. When you run tree in a node project folder the listing includes all of the files for the node modules that your project uses, build artifacts, etc. I’ve written a small node based version of tree build called node-tree-fiddy that honors the gitignore file.…

»