We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Mac OS 15.2 eza version: v0.20.18 [+git] (installed with homebrew) terminal: iterm2 3.5.11
I created a test with the following directory structure:
> tree -aL2 . . ├── .git <contents snipped> ├── .gitignore ├── bar │ └── file.txt ├── baz │ └── file.txt ├── foo │ └── file.txt └── test.txt
Contents of .gitignore
bar/ test.txt
Files and directories that are in the .gitignore file are correctly ignored when not explicit on the command line.
> eza -1 --git-ignore . baz foo
Files in .gitignore are correctly listed if explicitly specified on command line.
> eza -1 --git-ignore test.txt test.txt
Directories in .gitignore file are not displayed if explicitly specified on the command line.
> eza -1 --git-ignore bar <no ouput>
If the -T option is added then the directory is included but the contents of the directory are omitted.
> eza -1T --git-ignore foo bar bar foo └── file.txt
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Mac OS 15.2
eza version: v0.20.18 [+git] (installed with homebrew)
terminal: iterm2 3.5.11
I created a test with the following directory structure:
Contents of .gitignore
Files and directories that are in the .gitignore file are correctly ignored when not explicit on the command line.
Files in .gitignore are correctly listed if explicitly specified on command line.
Directories in .gitignore file are not displayed if explicitly specified on the command line.
If the -T option is added then the directory is included but the contents of the directory are omitted.
The text was updated successfully, but these errors were encountered: