Tree And Git Projects

Updated April 7, 2024
Created April 27, 2020


Tree prints out directory structures via the terminal.

Install it with

brew install tree

The following will print out files in the current project structure, ignoring files in the .gitignore file.

git ls-tree -r --name-only HEAD | tree --fromfile

Comments?